summaryrefslogtreecommitdiff
path: root/src/context.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/context.c')
-rw-r--r--src/context.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/context.c b/src/context.c
index 18a8222..814223b 100644
--- a/src/context.c
+++ b/src/context.c
@@ -202,7 +202,7 @@ priority_to_prefix(int priority)
case LOG_EMERG:
return "Internal error:";
default:
- return "";
+ return NULL;
}
}
@@ -316,11 +316,7 @@ xkb_log(struct xkb_context *ctx, int priority, const char *fmt, ...)
va_list args;
va_start(args, fmt);
- /* NOTE: This test will be removed in a few commits. */
- if (ctx)
- ctx->log_fn(ctx, priority, fmt, args);
- else
- default_log_fn(ctx, priority, fmt, args);
+ ctx->log_fn(ctx, priority, fmt, args);
va_end(args);
}