chiark / gitweb /
Remove unnecessary casts in printfs
[elogind.git] / src / udev / udev-builtin-blkid.c
index db652f7a6e46e9bef91b1ce9f19c61d82c72b171..cf194c00c668bcb349d847056d11df31d2fb63f3 100644 (file)
@@ -274,9 +274,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)