diff options
Diffstat (limited to 'src/pkg/os/proc.go')
| -rw-r--r-- | src/pkg/os/proc.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/os/proc.go b/src/pkg/os/proc.go index 9920c1355..38380c1e3 100644 --- a/src/pkg/os/proc.go +++ b/src/pkg/os/proc.go @@ -37,7 +37,7 @@ func Getegid() int { } // Getgroups returns a list of the numeric ids of groups that the caller belongs to. -func Getgroups() ([]int, os.Error) { +func Getgroups() ([]int, Error) { gids, errno := syscall.Getgroups(); return gids, NewSyscallError("getgroups", errno); } |
