Skip to content

Commit

Permalink
Fix previous
Browse files Browse the repository at this point in the history
Fixes #41
  • Loading branch information
Tim van der Molen committed Feb 9, 2024
1 parent 1466b65 commit 7dc2406
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion at/utimes_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
)

func (d Dir) utimes(path string, atime, mtime time.Time, flag int) error {
upath, err := windows.UTF16PtrFromString(path)
upath, err := windows.UTF16PtrFromString(d.join(path))
if err != nil {
return &os.PathError{Op: "utimes", Path: path, Err: err}
}
Expand Down

0 comments on commit 7dc2406

Please sign in to comment.