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:

committed by
Chris Mason

parent
1cb048f596
commit
c1c9ff7c94
@@ -1474,10 +1474,8 @@ int btrfs_insert_delayed_dir_index(struct btrfs_trans_handle *trans,
|
||||
printk(KERN_ERR "err add delayed dir index item(name: %s) into "
|
||||
"the insertion tree of the delayed node"
|
||||
"(root id: %llu, inode id: %llu, errno: %d)\n",
|
||||
name,
|
||||
(unsigned long long)delayed_node->root->objectid,
|
||||
(unsigned long long)delayed_node->inode_id,
|
||||
ret);
|
||||
name, delayed_node->root->objectid,
|
||||
delayed_node->inode_id, ret);
|
||||
BUG();
|
||||
}
|
||||
mutex_unlock(&delayed_node->mutex);
|
||||
@@ -1548,9 +1546,7 @@ int btrfs_delete_delayed_dir_index(struct btrfs_trans_handle *trans,
|
||||
printk(KERN_ERR "err add delayed dir index item(index: %llu) "
|
||||
"into the deletion tree of the delayed node"
|
||||
"(root id: %llu, inode id: %llu, errno: %d)\n",
|
||||
(unsigned long long)index,
|
||||
(unsigned long long)node->root->objectid,
|
||||
(unsigned long long)node->inode_id,
|
||||
index, node->root->objectid, node->inode_id,
|
||||
ret);
|
||||
BUG();
|
||||
}
|
||||
|
Reference in New Issue
Block a user