edje: remove extraneous new line in debug log

There was an extraneous '\n' at the end of the debug log invocation.
Since a new line is already appended by eina_log, this was redundant and
made the console output ugly. It is prettier now.
This commit is contained in:
Jean Guyomarc'h 2016-10-26 15:53:25 +02:00
parent efe5150bb8
commit 1177add1dd
No known key found for this signature in database
GPG Key ID: 9BFD70B4662DC58C
1 changed files with 1 additions and 1 deletions

View File

@ -1283,7 +1283,7 @@ _edje_emit_handle(Edje *ed, const char *sig, const char *src,
if (ed->delete_me) return;
if (!sig) sig = "";
if (!src) src = "";
DBG("EDJE EMIT: (%p) signal: \"%s\" source: \"%s\"\n", ed, sig, src);
DBG("EDJE EMIT: (%p) signal: \"%s\" source: \"%s\"", ed, sig, src);
_edje_block(ed);
_edje_ref(ed);
_edje_util_freeze(ed);