Warnings cleanup.

SVN revision: 15532
This commit is contained in:
technikolor 2005-06-25 09:46:59 +00:00 committed by technikolor
parent 36b2e425f7
commit 2243e3ea0e
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ int timer_once(void *data)
int main(int argc, char **argv)
{
ecore_init();
ecore_app_args_set(argc, argv);
ecore_app_args_set(argc, (const char **) argv);
ecore_timer_add(0.1, timer_once, NULL);
ecore_main_loop_begin();
ecore_shutdown();

View File

@ -31,7 +31,7 @@ int event_exit(void *data, int ev_type, void *ev)
int main(int argc, char **argv)
{
ecore_init();
ecore_app_args_set(argc, argv);
ecore_app_args_set(argc, (const char **) argv);
handler1 = ecore_event_handler_add(ECORE_EVENT_SIGNAL_EXIT,
event_exit, NULL);
handler2 = ecore_event_handler_add(ECORE_EVENT_SIGNAL_HUP,