Fix invalid literal suffixes in C++11 39/111139/1
authortaeyoon0.lee <taeyoon0.lee@samsung.com>
Thu, 19 Jan 2017 13:44:59 +0000 (22:44 +0900)
committertaeyoon0.lee <taeyoon0.lee@samsung.com>
Thu, 19 Jan 2017 13:46:42 +0000 (22:46 +0900)
  Changed "%s:%s "fmt to "%s:%s " fmt in pepper_log

Change-Id: I060a6d5bf2a056c5875b47690a00a46b66ecac8f

src/lib/pepper/pepper-utils.h

index 14817c53bb0470092c301e622b0a2c491493e05e..e6b60b1c6ead08a273949e7e2972e09e028218e5 100644 (file)
@@ -318,7 +318,7 @@ pepper_log(const char *domain, int level, const char *format, ...);
 
 #define PEPPER_ERROR(fmt, ...)                                                          \
     do {                                                                                \
-        pepper_log("ERROR", 0, "%s:%s: "fmt, __FILE__, __FUNCTION__, ##__VA_ARGS__);   \
+        pepper_log("ERROR", 0, "%s:%s: " fmt, __FILE__, __FUNCTION__, ##__VA_ARGS__);  \
     } while (0)
 
 #define PEPPER_TRACE(fmt, ...)                                                          \