aboutsummaryrefslogtreecommitdiff
path: root/pugl_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'pugl_test.c')
-rw-r--r--pugl_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl_test.c b/pugl_test.c
index 0b5c916..de61f61 100644
--- a/pugl_test.c
+++ b/pugl_test.c
@@ -147,7 +147,7 @@ onEvent(PuglView* view, const PuglEvent* event)
case PUGL_NOTHING:
break;
case PUGL_CONFIGURE:
- onReshape(view, event->configure.width, event->configure.height);
+ onReshape(view, (int)event->configure.width, (int)event->configure.height);
break;
case PUGL_EXPOSE:
onDisplay(view);