Fix casting int to int

SVN revision: 19453
This commit is contained in:
Christopher Michael 2005-12-31 12:01:04 +00:00
parent 8607bf932f
commit 6f9cd02ba3
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ main(int argc, char **argv)
"Perhaps you are out of memory?\n");
exit(-1);
}
ecore_app_args_set((int)argc, (const char **)argv);
ecore_app_args_set(argc, (const char **)argv);
/* setup a handler for when e is asked to exit via a system signal */
if (!ecore_event_handler_add(ECORE_EVENT_SIGNAL_EXIT, _e_cb_signal_exit, NULL))
{