aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/pugl_win.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-07-27 13:36:51 +0200
committerDavid Robillard <d@drobilla.net>2019-07-28 15:01:26 +0200
commite7236e4a5ff6e7d28792d6ab8bee43c2024a9a53 (patch)
tree4f8808389f468107fe41abe0da4b6698650cb413 /pugl/pugl_win.c
parent4c4b388fab18b12c0cc915238f844eb78b9ff21d (diff)
downloadpugl-e7236e4a5ff6e7d28792d6ab8bee43c2024a9a53.tar.gz
pugl-e7236e4a5ff6e7d28792d6ab8bee43c2024a9a53.tar.bz2
pugl-e7236e4a5ff6e7d28792d6ab8bee43c2024a9a53.zip
Fix unused parameter warnings and prevent rot
Diffstat (limited to 'pugl/pugl_win.c')
-rw-r--r--pugl/pugl_win.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/pugl/pugl_win.c b/pugl/pugl_win.c
index b691295..e47916c 100644
--- a/pugl/pugl_win.c
+++ b/pugl/pugl_win.c
@@ -856,9 +856,8 @@ puglRequestAttention(PuglView* view)
}
PuglStatus
-puglWaitForEvent(PuglView* view)
+puglWaitForEvent(PuglView* PUGL_UNUSED(view))
{
- (void)view;
WaitMessage();
return PUGL_SUCCESS;
}