projects
/
platform
/
upstream
/
enlightenment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
22fe51a
)
e_log: fixed bug - DEREF_OF_NULL
87/101887/1
author
Doyoun Kang
<doyoun.kang@samsung.com>
Fri, 2 Dec 2016 09:41:41 +0000
(18:41 +0900)
committer
Doyoun Kang
<doyoun.kang@samsung.com>
Fri, 2 Dec 2016 09:41:41 +0000
(18:41 +0900)
Change-Id: I02a2728d4a5c40e205929e034f92c215812c0ad9
src/bin/e_log.h
patch
|
blob
|
history
diff --git
a/src/bin/e_log.h
b/src/bin/e_log.h
index 00d87b8987f1577ff8f545d7df04f9384bafde63..bc9f58baa8d00519e42a1192d451533dd1fa0b28 100644
(file)
--- a/
src/bin/e_log.h
+++ b/
src/bin/e_log.h
@@
-80,7
+80,7
@@
#define ELOG(t, cp, ec) \
do \
{ \
- if ((!
cp) && (!ec
)) \
+ if ((!
ec) && (!cp
)) \
INF("EWL|%20.20s| | |", \
(t)); \
else \
@@
-94,7
+94,7
@@
#define ELOGF(t, f, cp, ec, x...) \
do \
{ \
- if ((!
cp) && (!ec
)) \
+ if ((!
ec) && (!cp
)) \
INF("EWL|%20.20s| | |"f,\
(t), ##x); \
else \