aboutsummaryrefslogtreecommitdiff
path: root/samples/null.c
diff options
context:
space:
mode:
authorThanos Makatos <thanos.makatos@nutanix.com>2020-12-02 05:31:52 -0500
committerThanos <tmakatos@gmail.com>2020-12-02 11:09:41 +0000
commitddf444e8da02e0c8796944e2484cd0ca91a0105d (patch)
tree72b8ee1f1fae4ba84155fc1970da16bb49693345 /samples/null.c
parent806284b29414e11f7fd5274ba608ba66bbedc49f (diff)
downloadlibvfio-user-ddf444e8da02e0c8796944e2484cd0ca91a0105d.zip
libvfio-user-ddf444e8da02e0c8796944e2484cd0ca91a0105d.tar.gz
libvfio-user-ddf444e8da02e0c8796944e2484cd0ca91a0105d.tar.bz2
use log level defines from syslog
Signed-off-by: Thanos Makatos <thanos.makatos@nutanix.com>
Diffstat (limited to 'samples/null.c')
-rw-r--r--samples/null.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/null.c b/samples/null.c
index adf3a46..fda260e 100644
--- a/samples/null.c
+++ b/samples/null.c
@@ -43,7 +43,7 @@
#include "tran_sock.h"
static void
-null_log(UNUSED void *pvt, UNUSED vfu_log_lvl_t lvl, char const *msg)
+null_log(UNUSED void *pvt, UNUSED int level, char const *msg)
{
fprintf(stderr, "null: %s", msg);
}
@@ -86,7 +86,7 @@ int main(int argc, char **argv)
err(EXIT_FAILURE, "failed to create libvfio-user context");
}
- ret = vfu_setup_log(vfu_ctx, null_log, VFU_DBG);
+ ret = vfu_setup_log(vfu_ctx, null_log, LOG_DEBUG);
if (ret < 0) {
err(EXIT_FAILURE, "failed to setup log");
}