From dfc0bb39b28ec47a20053e198136755eb12097a1 Mon Sep 17 00:00:00 2001 From: Slava Monich Date: Sat, 12 Mar 2016 02:07:23 +0200 Subject: [PATCH] [mms-lib] Fixed compilation without varargs support --- mms-lib/include/mms_log.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mms-lib/include/mms_log.h b/mms-lib/include/mms_log.h index 982b745..4f50bc1 100644 --- a/mms-lib/include/mms_log.h +++ b/mms-lib/include/mms_log.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2013-2015 Jolla Ltd. + * Copyright (C) 2013-2016 Jolla Ltd. * Contact: Slava Monich * * This program is free software; you can redistribute it and/or modify @@ -79,10 +79,10 @@ # define MMS_WARN_ GWARN_ # define MMS_INFO GINFO # define MMS_INFO_ GINFO_ -# define MMS_DEBUG MMS_DEBUG -# define MMS_DEBUG_ MMS_DEBUG_ -# define MMS_VERBOSE MMS_VERBOSE -# define MMS_VERBOSE_ MMS_VERBOSE_ +# define MMS_DEBUG GDEBUG +# define MMS_DEBUG_ GDEBUG_ +# define MMS_VERBOSE GVERBOSE +# define MMS_VERBOSE_ GVERBOSE_ #endif /* GLOG_VARARGS */ #endif /* JOLLA_MMS_LOG_H */