Skip to content

Commit 2c4b7f6

Browse files
author
John Howard
committed
Fixup archive/tar_windows.go type
Signed-off-by: John Howard <[email protected]>
1 parent 8fe92ea commit 2c4b7f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

archive/tar_windows.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ func fileInfoFromHeader(hdr *tar.Header) (name string, size int64, fileInfo *win
259259
if err != nil {
260260
return "", 0, nil, err
261261
}
262-
fileInfo.FileAttributes = uintptr(attr)
262+
fileInfo.FileAttributes = uint32(attr)
263263
} else {
264264
if hdr.Typeflag == tar.TypeDir {
265265
fileInfo.FileAttributes |= syscall.FILE_ATTRIBUTE_DIRECTORY

0 commit comments

Comments
 (0)