diff options
author | Zbigniew Jedrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-05-15 18:42:28 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2014-05-15 19:34:56 -0400 |
commit | f8e5fbd9c8b209e556c017bfb420a86e8181dfa7 (patch) | |
tree | e6488b61b93e5e69c161475a6c62f2bfbd146f00 /src/udev/udev-builtin-blkid.c | |
parent | db992ba3a71f320faab8f90de77ef081305917bb (diff) |
Remove unnecessary casts in printfs
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/udev/udev-builtin-blkid.c')
-rw-r--r-- | src/udev/udev-builtin-blkid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/udev/udev-builtin-blkid.c b/src/udev/udev-builtin-blkid.c index 24adb71b17..91ce794c99 100644 --- a/src/udev/udev-builtin-blkid.c +++ b/src/udev/udev-builtin-blkid.c @@ -190,9 +190,9 @@ static int builtin_blkid(struct udev_device *dev, int argc, char *argv[], bool t if (err < 0) goto out; - log_debug("probe %s %sraid offset=%llu", + log_debug("probe %s %sraid offset=%"PRIu64, udev_device_get_devnode(dev), - noraid ? "no" : "", (unsigned long long) offset); + noraid ? "no" : "", offset); err = probe_superblocks(pr); if (err < 0) |