summaryrefslogtreecommitdiffstats
path: root/shlibs/mount/src/mountP.h
diff options
context:
space:
mode:
authorKarel Zak2009-11-27 14:35:03 +0100
committerKarel Zak2010-06-03 15:20:10 +0200
commit7755ca95c943e8690a351c0580c2ad06950c057b (patch)
treef77a5a86533d3044883532dbec7c62a55e38bfe0 /shlibs/mount/src/mountP.h
parentlibmount: add test_version (diff)
downloadkernel-qcow2-util-linux-7755ca95c943e8690a351c0580c2ad06950c057b.tar.gz
kernel-qcow2-util-linux-7755ca95c943e8690a351c0580c2ad06950c057b.tar.xz
kernel-qcow2-util-linux-7755ca95c943e8690a351c0580c2ad06950c057b.zip
libblkid: add paths and tags cache
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'shlibs/mount/src/mountP.h')
-rw-r--r--shlibs/mount/src/mountP.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/shlibs/mount/src/mountP.h b/shlibs/mount/src/mountP.h
index 5ac3b6bc0..21f3e67ed 100644
--- a/shlibs/mount/src/mountP.h
+++ b/shlibs/mount/src/mountP.h
@@ -30,13 +30,14 @@
#endif
#define DEBUG_INIT (1 << 1)
+#define DEBUG_CACHE (1 << 2)
#define DEBUG_ALL 0xFFFF
#ifdef CONFIG_LIBMOUNT_DEBUG
#include <stdio.h>
extern int libmount_debug_mask;
extern void mnt_init_debug(int mask);
-#define DBG(m,x) if ((m) & libmount_debug_mask) x;
+#define DBG(m,x) if ((m) & libmount_debug_mask) x
#else
#define DBG(m,x)
#define mnt_init_debug(x)