syntax_color: fix wrong indentation

Summary: fix static analyzer warning

Reviewers: Hermet, Jaehyun_Cho

Reviewed By: Jaehyun_Cho

Differential Revision: https://phab.enlightenment.org/D4002
This commit is contained in:
Bowon Ryu 2016-06-02 11:59:54 +09:00 committed by Jaehyun Cho
parent 2698280453
commit d4a4a4da6c
1 changed files with 2 additions and 2 deletions

View File

@ -416,8 +416,8 @@ string_apply(Eina_Strbuf *strbuf, char **cur, char **prev,
snprintf(buf, sizeof(buf), "<color=#%s>%s", col, QUOT);
else
snprintf(buf, sizeof(buf), "%s</color>", QUOT);
eina_strbuf_append(strbuf, buf);
*cur += QUOT_LEN;
eina_strbuf_append(strbuf, buf);
*cur += QUOT_LEN;
}
*prev = *cur;