mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-04 21:31:51 +00:00
Btrfs: Remove superfluous casts from u64 to unsigned long long
u64 is "unsigned long long" on all architectures now, so there's no need to cast it when formatting it using the "ll" length modifier. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Josef Bacik <jbacik@fusionio.com> Signed-off-by: Chris Mason <chris.mason@fusionio.com>
This commit is contained in:
parent
1cb048f596
commit
c1c9ff7c94
22 changed files with 221 additions and 422 deletions
|
@ -148,7 +148,7 @@ no_valid_dev_replace_entry_found:
|
|||
!btrfs_test_opt(dev_root, DEGRADED)) {
|
||||
ret = -EIO;
|
||||
pr_warn("btrfs: cannot mount because device replace operation is ongoing and\n" "srcdev (devid %llu) is missing, need to run 'btrfs dev scan'?\n",
|
||||
(unsigned long long)src_devid);
|
||||
src_devid);
|
||||
}
|
||||
if (!dev_replace->tgtdev &&
|
||||
!btrfs_test_opt(dev_root, DEGRADED)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue