Skip to content

Commit 2069bfe

Browse files
committed
btrfs-progs: mkfs: drop unsigned long long casts for printf
The %llu specifier does not need the typecast for ULL for a long time, remove it. Signed-off-by: David Sterba <dsterba@suse.com>
1 parent 75a4512 commit 2069bfe

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mkfs/main.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -801,8 +801,7 @@ static int btrfs_uuid_tree_add(struct btrfs_trans_handle *trans, u8 *uuid,
801801
if (ret < 0 && ret != -EEXIST) {
802802
warning(
803803
"inserting uuid item failed (0x%016llx, 0x%016llx) type %u: %d",
804-
(unsigned long long)key.objectid,
805-
(unsigned long long)key.offset, type, ret);
804+
key.objectid, key.offset, type, ret);
806805
goto out;
807806
}
808807

0 commit comments

Comments
 (0)