From: Karel Zak Date: Mon, 17 Dec 2018 10:05:23 +0000 (+0100) Subject: libblkid: (bluestore) terminate magic strings array X-Git-Tag: v2.34-rc1~177 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=200769b6c0dff6863089ea2a9ff4ea9ccbd15d0f;p=thirdparty%2Futil-linux.git libblkid: (bluestore) terminate magic strings array Signed-off-by: Karel Zak --- diff --git a/libblkid/src/superblocks/bluestore.c b/libblkid/src/superblocks/bluestore.c index 24c56f24ab..318aa9fd19 100644 --- a/libblkid/src/superblocks/bluestore.c +++ b/libblkid/src/superblocks/bluestore.c @@ -49,6 +49,7 @@ const struct blkid_idinfo bluestore_idinfo = .probefunc = probe_bluestore, .magics = { - { .magic = "bluestore block device", .len = 22 } + { .magic = "bluestore block device", .len = 22 }, + { NULL } } };