main: print warning message correctly.

that message is not about a programmers error but user's mis-usage.
That shouldn't be eina_log_error.
This commit is contained in:
Hermet Park 2016-06-01 23:22:03 +09:00
parent 4276c9479e
commit 47fb10341c
1 changed files with 2 additions and 2 deletions

View File

@ -330,8 +330,8 @@ defaults:
//Do not overwrite existing EDC file with template code.
if (*template && ecore_file_exists(edc_path))
{
EINA_LOG_ERR("\"%s\" already exists! Please input another file "
"name with \"-t\" option.\n", edc_path);
fprintf(stdout, "\"%s\" already exists! Please input another file "
"name with \"-t\" option.\n", edc_path);
exit(0);
}
}