diff options
author | Stefan Hajnoczi <stefanha@redhat.com> | 2019-09-10 12:36:56 +0200 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2019-09-10 14:25:15 +0100 |
commit | d368dad2c8d34bc37d76ef36f79a463c12f933ff (patch) | |
tree | 40e5f938ccbf74be12e766047ae07862182e654f /lib/fuse_log.c | |
parent | 7c1e09dbc2e4215969425e50ec03889d19a926d4 (diff) |
log: move fuse_log() to the public header file
Applications may wish to call fuse_log() for unified logging. This way
they don't need to define their own wrappers to invoke the log message
handler function installed by fuse_set_log_func().
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'lib/fuse_log.c')
-rw-r--r-- | lib/fuse_log.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/fuse_log.c b/lib/fuse_log.c index 09178e4..0d268ab 100644 --- a/lib/fuse_log.c +++ b/lib/fuse_log.c @@ -9,7 +9,6 @@ */ #include "fuse_log.h" -#include "fuse_i.h" #include <stdarg.h> #include <stdio.h> |