aboutsummaryrefslogtreecommitdiff
path: root/e2fsprogs/blkid/probe.c
diff options
context:
space:
mode:
Diffstat (limited to 'e2fsprogs/blkid/probe.c')
-rw-r--r--e2fsprogs/blkid/probe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/e2fsprogs/blkid/probe.c b/e2fsprogs/blkid/probe.c
index a2165efee..ea9a619ee 100644
--- a/e2fsprogs/blkid/probe.c
+++ b/e2fsprogs/blkid/probe.c
@@ -706,7 +706,7 @@ int main(int argc, char **argv)
706 dev = blkid_get_dev(cache, argv[1], BLKID_DEV_NORMAL); 706 dev = blkid_get_dev(cache, argv[1], BLKID_DEV_NORMAL);
707 if (!dev) { 707 if (!dev) {
708 printf("%s: %s has an unsupported type\n", argv[0], argv[1]); 708 printf("%s: %s has an unsupported type\n", argv[0], argv[1]);
709 return (1); 709 return 1;
710 } 710 }
711 printf("%s is type %s\n", argv[1], dev->bid_type ? 711 printf("%s is type %s\n", argv[1], dev->bid_type ?
712 dev->bid_type : "(null)"); 712 dev->bid_type : "(null)");
@@ -716,6 +716,6 @@ int main(int argc, char **argv)
716 printf("\tuuid is %s\n", dev->bid_uuid); 716 printf("\tuuid is %s\n", dev->bid_uuid);
717 717
718 blkid_free_dev(dev); 718 blkid_free_dev(dev);
719 return (0); 719 return 0;
720} 720}
721#endif 721#endif