Merge pull request #1203 from sapk-fork/fix-int64

worktree: force convert to int64 to support 32bit os. Fix #1202
diff --git a/worktree_linux.go b/worktree_linux.go
index efb01b5..891cb1c 100644
--- a/worktree_linux.go
+++ b/worktree_linux.go
@@ -12,7 +12,7 @@
 func init() {
 	fillSystemInfo = func(e *index.Entry, sys interface{}) {
 		if os, ok := sys.(*syscall.Stat_t); ok {
-			e.CreatedAt = time.Unix(os.Ctim.Sec, os.Ctim.Nsec)
+			e.CreatedAt = time.Unix(int64(os.Ctim.Sec), int64(os.Ctim.Nsec))
 			e.Dev = uint32(os.Dev)
 			e.Inode = uint32(os.Ino)
 			e.GID = os.Gid