summaryrefslogtreecommitdiffstats
path: root/libblkid/src/resolve.c
diff options
context:
space:
mode:
authorKarel Zak2014-03-21 12:34:50 +0100
committerKarel Zak2014-03-21 12:34:50 +0100
commitc62a6311ee95556bdaf12106a6a1f8c353322ccd (patch)
treed82391d43277f80ac98ec5853d484183b016d893 /libblkid/src/resolve.c
parentlibmount: use new debug functions (diff)
downloadkernel-qcow2-util-linux-c62a6311ee95556bdaf12106a6a1f8c353322ccd.tar.gz
kernel-qcow2-util-linux-c62a6311ee95556bdaf12106a6a1f8c353322ccd.tar.xz
kernel-qcow2-util-linux-c62a6311ee95556bdaf12106a6a1f8c353322ccd.zip
libblkid: use new debug functions
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'libblkid/src/resolve.c')
-rw-r--r--libblkid/src/resolve.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libblkid/src/resolve.c b/libblkid/src/resolve.c
index 3a93f53dc..ea5e407c4 100644
--- a/libblkid/src/resolve.c
+++ b/libblkid/src/resolve.c
@@ -32,7 +32,7 @@ char *blkid_get_tag_value(blkid_cache cache, const char *tagname,
blkid_cache c = cache;
char *ret = NULL;
- DBG(RESOLVE, blkid_debug("looking for %s on %s", tagname, devname));
+ DBG(RESOLVE, ul_debug("looking for %s on %s", tagname, devname));
if (!devname)
return NULL;
@@ -68,7 +68,7 @@ char *blkid_get_devname(blkid_cache cache, const char *token,
if (!cache && blkid_get_cache(&c, NULL) < 0)
return NULL;
- DBG(RESOLVE, blkid_debug("looking for %s%s%s %s", token, value ? "=" : "",
+ DBG(RESOLVE, ul_debug("looking for %s%s%s %s", token, value ? "=" : "",
value ? value : "", cache ? "in cache" : "from disk"));
if (!value) {