Fix after go vet

This commit is contained in:
Nick Craig-Wood 2012-12-26 12:27:26 +00:00
parent 3bf6348f57
commit 555e545b46
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ func Chtimes(name string, atime time.Time, mtime time.Time) error {
utimes[0] = syscall.NsecToTimespec(atime.UnixNano())
utimes[1] = syscall.NsecToTimespec(mtime.UnixNano())
if e := Utimensat(AT_FDCWD, name, utimes[0:]); e != nil {
return &os.PathError{"chtimes", name, e}
return &os.PathError{Op: "chtimes", Path: name, Err: e}
}
return nil
}