]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
lsblk: fix compiler warning
authorSami Kerola <kerolasa@iki.fi>
Sun, 28 Sep 2014 19:51:44 +0000 (20:51 +0100)
committerKarel Zak <kzak@redhat.com>
Wed, 1 Oct 2014 10:33:42 +0000 (12:33 +0200)
warning: ISO C forbids empty initializer braces [-Wpedantic]

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
misc-utils/lsblk.c

index dc1cf69d0f268feb1f54134fd874d1203cfb0d04..a87d997eb3a54be87532d6b37ba2792a5fd9afce 100644 (file)
@@ -1143,7 +1143,7 @@ static int list_partitions(struct blkdev_cxt *wholedisk_cxt, struct blkdev_cxt *
 {
        DIR *dir;
        struct dirent *d;
-       struct blkdev_cxt part_cxt = {};
+       struct blkdev_cxt part_cxt = { 0 };
        int r = -1;
 
        assert(wholedisk_cxt);
@@ -1242,7 +1242,7 @@ static int list_deps(struct blkdev_cxt *cxt)
 {
        DIR *dir;
        struct dirent *d;
-       struct blkdev_cxt dep = {};
+       struct blkdev_cxt dep = { 0 };
        char dirname[PATH_MAX];
        const char *depname;
 
@@ -1293,7 +1293,7 @@ static int iterate_block_devices(void)
 {
        DIR *dir;
        struct dirent *d;
-       struct blkdev_cxt cxt = {};
+       struct blkdev_cxt cxt = { 0 };
 
        if (!(dir = opendir(_PATH_SYS_BLOCK)))
                return EXIT_FAILURE;
@@ -1341,7 +1341,7 @@ static char *devno_to_sysfs_name(dev_t devno, char *devname, char *buf, size_t b
 
 static int process_one_device(char *devname)
 {
-       struct blkdev_cxt parent = {}, cxt = {};
+       struct blkdev_cxt parent = { 0 }, cxt = { 0 };
        struct stat st;
        char buf[PATH_MAX + 1], *name, *diskname = NULL;
        dev_t disk = 0;