|
@@ -40,12 +40,12 @@ func Size(ctx context.Context, dir string) (size int64, err error) {
|
|
|
|
|
|
// Check inode to handle hard links correctly
|
|
|
inode := fileInfo.Sys().(*syscall.Stat_t).Ino
|
|
|
- // inode is not a uint64 on all platforms. Cast it to avoid issues.
|
|
|
- if _, exists := data[inode]; exists {
|
|
|
+ //nolint:unconvert // inode is not an uint64 on all platforms.
|
|
|
+ if _, exists := data[uint64(inode)]; exists {
|
|
|
return nil
|
|
|
}
|
|
|
- // inode is not a uint64 on all platforms. Cast it to avoid issues.
|
|
|
- data[inode] = struct{}{}
|
|
|
+
|
|
|
+ data[uint64(inode)] = struct{}{} //nolint:unconvert // inode is not an uint64 on all platforms.
|
|
|
|
|
|
size += s
|
|
|
|