projects
/
platform
/
core
/
uifw
/
pepper.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
35f304e
)
Fix invalid literal suffixes in C++11
39/111139/1
author
taeyoon0.lee
<taeyoon0.lee@samsung.com>
Thu, 19 Jan 2017 13:44:59 +0000
(22:44 +0900)
committer
taeyoon0.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
patch
|
blob
|
history
diff --git
a/src/lib/pepper/pepper-utils.h
b/src/lib/pepper/pepper-utils.h
index 14817c53bb0470092c301e622b0a2c491493e05e..e6b60b1c6ead08a273949e7e2972e09e028218e5 100644
(file)
--- a/
src/lib/pepper/pepper-utils.h
+++ b/
src/lib/pepper/pepper-utils.h
@@
-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, ...) \