basic/copy: remove unnecessary cast

Both types are unsigned, so the cast to the longer type is automatic.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2016-04-02 18:20:12 -04:00
parent 7c2da2ca88
commit d219849e60
1 changed files with 2 additions and 2 deletions

View File

@ -94,8 +94,8 @@ int copy_bytes(int fdf, int fdt, uint64_t max_bytes, bool try_reflink) {
if (max_bytes <= 0)
return 1; /* return > 0 if we hit the max_bytes limit */
if ((uint64_t) m > max_bytes)
m = (size_t) max_bytes;
if (m > max_bytes)
m = max_bytes;
}
/* First try copy_file_range(), unless we already tried */