aboutsummaryrefslogtreecommitdiff
path: root/samples/null.c
diff options
context:
space:
mode:
authorThanos Makatos <thanos.makatos@nutanix.com>2020-07-06 09:35:49 -0400
committerThanos Makatos <thanos.makatos@nutanix.com>2020-07-06 09:35:49 -0400
commita7568d0dee925955f484bb821ac5a4bdab6db68a (patch)
treed928d623ae18fc5a2b7c258406d002206eae2f0a /samples/null.c
parentea443b0b2aef92b82db5e38119a87c64e756bcfe (diff)
downloadlibvfio-user-a7568d0dee925955f484bb821ac5a4bdab6db68a.zip
libvfio-user-a7568d0dee925955f484bb821ac5a4bdab6db68a.tar.gz
libvfio-user-a7568d0dee925955f484bb821ac5a4bdab6db68a.tar.bz2
pass log level to log function
This is useful when using another log function from the log function callback. Signed-off-by: Thanos Makatos <thanos.makatos@nutanix.com>
Diffstat (limited to 'samples/null.c')
-rw-r--r--samples/null.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/null.c b/samples/null.c
index db21953..2954da8 100644
--- a/samples/null.c
+++ b/samples/null.c
@@ -43,7 +43,7 @@
#include "../lib/muser.h"
static void
-null_log(void *pvt, char const *msg)
+null_log(void *pvt, lm_log_lvl_t lvl __attribute__((unused)), char const *msg)
{
fprintf(stderr, "%s", msg);
}