lib/path: simplify debug message

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2018-05-25 13:20:22 +02:00
parent 6e509042b8
commit 53c74b700c
1 changed files with 2 additions and 2 deletions

View File

@ -296,7 +296,7 @@ int ul_path_open(struct path_cxt *pc, int flags, const char *path)
if (!pc) {
fd = open(path, flags);
DBG(CXT, ul_debug("opening [%d] '%s'", flags, path));
DBG(CXT, ul_debug("opening '%s'", path));
} else {
int dir = ul_path_get_dirfd(pc);
if (dir < 0)
@ -309,7 +309,7 @@ int ul_path_open(struct path_cxt *pc, int flags, const char *path)
&& pc->redirect_on_enoent(pc, path, &dir) == 0)
fd = openat(dir, path, flags);
DBG(CXT, ul_debugobj(pc, "opening [%d] '%s'", flags, path));
DBG(CXT, ul_debugobj(pc, "opening '%s'", path));
}
return fd;
}