From e1834c22b196e4fff8c522b8bf43b316d0aea98c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Sun, 23 Jun 2013 23:04:23 +0200 Subject: [PATCH] Dop inline on uc_ll_2_str to avoid clang warning --- src/logging.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logging.c b/src/logging.c index cdf086a..85146e8 100644 --- a/src/logging.c +++ b/src/logging.c @@ -79,7 +79,7 @@ static const char *const g_log_levels[] = { "NONE" }; -inline const char *uc_ll_2_str(enum UC_LOG_LEVEL l) +const char *uc_ll_2_str(enum UC_LOG_LEVEL l) { if (l < ARRAY_SIZE(g_log_levels)) { return g_log_levels[l];