Skip to content

Commit

Permalink
Fixed function prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
scoopr committed Feb 27, 2012
1 parent 0d1822f commit aa72843
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ngi_application.c
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ int ngi_application_handle_redisplay(ngi_application* app) {




#ifndef NGI_APPLICATION_IOS #ifndef NGI_APPLICATION_IOS
void ngi_run(int argc, char* argv, ngi_event_cb cb) int ngi_run(int argc, char** argv, ngi_event_cb cb)
{ {
(void)argc; (void)argc;
(void)argv; (void)argv;
Expand All @@ -158,6 +158,7 @@ void ngi_run(int argc, char* argv, ngi_event_cb cb)




ngi_application_deinit(&app); ngi_application_deinit(&app);
return 0;
} }
#endif #endif


Expand Down

0 comments on commit aa72843

Please sign in to comment.