diff options
Diffstat (limited to 'pugl/pugl_internal.h')
-rw-r--r-- | pugl/pugl_internal.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/pugl/pugl_internal.h b/pugl/pugl_internal.h index 6042e6a..57b026f 100644 --- a/pugl/pugl_internal.h +++ b/pugl/pugl_internal.h @@ -46,11 +46,8 @@ puglDefaultHints(void) } PuglView* -puglInit(int* pargc, char** argv) +puglInit(int* PUGL_UNUSED(pargc), char** PUGL_UNUSED(argv)) { - (void)pargc; - (void)argv; - PuglView* view = (PuglView*)calloc(1, sizeof(PuglView)); if (!view) { return NULL; |