1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-03-11 20:58:50 +03:00

cleanup: size is already 64bit value

Cast is not needed.
This commit is contained in:
Zdenek Kabelac 2012-11-09 13:18:43 +01:00
parent 51783676fb
commit 993831bdb1

View File

@ -987,7 +987,7 @@ uint64_t extents_from_size(struct cmd_context *cmd, uint64_t size,
return 0;
}
return (uint64_t) size / extent_size;
return size / extent_size;
}
/*