summaryrefslogtreecommitdiffstats
path: root/libblkid
diff options
context:
space:
mode:
authorKarel Zak2018-12-17 11:05:23 +0100
committerKarel Zak2018-12-17 11:05:23 +0100
commit200769b6c0dff6863089ea2a9ff4ea9ccbd15d0f (patch)
tree08a64d92d72bb9dcce1d24c04a2ac6c2c48faa33 /libblkid
parentMerge branch 'master' of https://github.com/kvanals/util-linux (diff)
downloadkernel-qcow2-util-linux-200769b6c0dff6863089ea2a9ff4ea9ccbd15d0f.tar.gz
kernel-qcow2-util-linux-200769b6c0dff6863089ea2a9ff4ea9ccbd15d0f.tar.xz
kernel-qcow2-util-linux-200769b6c0dff6863089ea2a9ff4ea9ccbd15d0f.zip
libblkid: (bluestore) terminate magic strings array
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'libblkid')
-rw-r--r--libblkid/src/superblocks/bluestore.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libblkid/src/superblocks/bluestore.c b/libblkid/src/superblocks/bluestore.c
index 24c56f24a..318aa9fd1 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 }
}
};