edc_parser: fix typo.

This commit is contained in:
Hermet Park 2016-03-07 20:47:24 +09:00
parent 6280b1e680
commit 665bcb9b55
1 changed files with 1 additions and 1 deletions

View File

@ -543,7 +543,7 @@ cur_state_thread_blocking(void *data, Ecore_Thread *thread EINA_UNUSED)
while (temp_pos && (temp_pos < name_end))
{
space_pos = temp_pos;
temp_pos++;
if (!(++temp_pos)) break;
temp_pos = strchr(temp_pos, ' ');
}