Else these variables will cause following warning: libblkid/src/superblocks/superblocks.c:165:29: warning: symbol 'superblocks_drv' was not declared. Should it be static? Signed-off-by: Sami Kerola <kerolasa@xxxxxx> --- libblkid/src/blkidP.h | 5 +++++ libblkid/src/probe.c | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libblkid/src/blkidP.h b/libblkid/src/blkidP.h index 817c8b02b..de41473a8 100644 --- a/libblkid/src/blkidP.h +++ b/libblkid/src/blkidP.h @@ -116,6 +116,11 @@ struct blkid_chaindrv { void (*free_data)(blkid_probe, void *); }; +/* chains */ +extern const struct blkid_chaindrv superblocks_drv; +extern const struct blkid_chaindrv topology_drv; +extern const struct blkid_chaindrv partitions_drv; + /* * Low-level probe result */ diff --git a/libblkid/src/probe.c b/libblkid/src/probe.c index df90a82e0..ab05fb2d3 100644 --- a/libblkid/src/probe.c +++ b/libblkid/src/probe.c @@ -115,11 +115,6 @@ #include "strutils.h" #include "list.h" -/* chains */ -extern const struct blkid_chaindrv superblocks_drv; -extern const struct blkid_chaindrv topology_drv; -extern const struct blkid_chaindrv partitions_drv; - /* * All supported chains */ -- 2.11.1 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html