summaryrefslogtreecommitdiffstats
path: root/fdisk/fdisk.c
diff options
context:
space:
mode:
authorKarel Zak2011-03-16 17:45:53 +0100
committerKarel Zak2011-03-16 17:45:53 +0100
commit64d15476c06d0ff05cdccb4b5fc587adf56e1a85 (patch)
tree7511f617d9147289fa0516be045d908f58337ab5 /fdisk/fdisk.c
parentbuild-sys: clean up partx Makefile (diff)
downloadkernel-qcow2-util-linux-64d15476c06d0ff05cdccb4b5fc587adf56e1a85.tar.gz
kernel-qcow2-util-linux-64d15476c06d0ff05cdccb4b5fc587adf56e1a85.tar.xz
kernel-qcow2-util-linux-64d15476c06d0ff05cdccb4b5fc587adf56e1a85.zip
build-sys: don't use HAVE_LIBBLKID_INTERNAL macro
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'fdisk/fdisk.c')
-rw-r--r--fdisk/fdisk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fdisk/fdisk.c b/fdisk/fdisk.c
index b6b81e493..f0f806143 100644
--- a/fdisk/fdisk.c
+++ b/fdisk/fdisk.c
@@ -44,7 +44,7 @@
#ifdef HAVE_LINUX_BLKPG_H
#include <linux/blkpg.h>
#endif
-#ifdef HAVE_LIBBLKID_INTERNAL
+#ifdef HAVE_LIBBLKID
#include <blkid.h>
#endif
@@ -957,7 +957,7 @@ create_doslabel(void) {
static void
get_topology(int fd) {
int arg;
-#ifdef HAVE_LIBBLKID_INTERNAL
+#ifdef HAVE_LIBBLKID
blkid_probe pr;
pr = blkid_new_probe();