From 876cf7c86f05ab67fca8d180891e777a77b68158 Mon Sep 17 00:00:00 2001 From: Johan Wikman Date: Thu, 16 Aug 2018 11:24:01 +0300 Subject: [PATCH] MXS-2014 Temporarily fix broken token pasting --- maxutils/maxbase/include/maxbase/log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maxutils/maxbase/include/maxbase/log.h b/maxutils/maxbase/include/maxbase/log.h index 9174acb25..37d0cc552 100644 --- a/maxutils/maxbase/include/maxbase/log.h +++ b/maxutils/maxbase/include/maxbase/log.h @@ -299,7 +299,7 @@ int mxb_log_oom(const char* message); * * @return 0 for success, non-zero otherwise. */ -#define MXB_OOM_MESSAGE(message) mxb_log_oom("OOM: " ## message ## "\n") +#define MXB_OOM_MESSAGE(message) mxb_log_oom(message) /** * Log an out of memory error using a default message.