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:
e140ccb
)
improve readability of E_FIRST_FRAME environment variable detection
author
Mike Blumenkrantz
<zmike@osg.samsung.com>
Thu, 12 Nov 2015 20:06:09 +0000
(15:06 -0500)
committer
Mike Blumenkrantz
<zmike@osg.samsung.com>
Thu, 12 Nov 2015 20:09:29 +0000
(15:09 -0500)
functionality remains the same, but this is more clear for readers
src/bin/e_main.c
patch
|
blob
|
history
diff --git
a/src/bin/e_main.c
b/src/bin/e_main.c
index c7b6ea609801864ff6ff1ba6eedc695d2b56490b..b4df9a83bece0376390d448f7662e1cf707618a0 100644
(file)
--- a/
src/bin/e_main.c
+++ b/
src/bin/e_main.c
@@
-352,10
+352,10
@@
main(int argc, char **argv)
_e_main_shutdown_push(ecore_shutdown);
e_first_frame = getenv("E_FIRST_FRAME");
- if (e_first_frame && (!e_first_frame[0]))
- e_first_frame = NULL;
- else
+ if (e_first_frame && e_first_frame[0])
e_first_frame_start_time = ecore_time_get();
+ else
+ e_first_frame = NULL;
TS("EIO Init");
if (!eio_init())