diff options
author | David Robillard <d@drobilla.net> | 2019-02-15 23:09:26 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-02-16 16:56:50 +0100 |
commit | 26e312ac1083987d42cf028ea511b8703c984a7a (patch) | |
tree | 0252e4d97dd2795fedc1c0fb52c8b30c74a4ad3c /pugl/pugl_x11.c | |
parent | 539c1ddd4029f4ea62368c45955d0c1f6bca4006 (diff) | |
download | pugl-26e312ac1083987d42cf028ea511b8703c984a7a.tar.gz pugl-26e312ac1083987d42cf028ea511b8703c984a7a.tar.bz2 pugl-26e312ac1083987d42cf028ea511b8703c984a7a.zip |
Fix implicit double to int casts
Diffstat (limited to 'pugl/pugl_x11.c')
-rw-r--r-- | pugl/pugl_x11.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pugl/pugl_x11.c b/pugl/pugl_x11.c index 3a8cead..2755aa0 100644 --- a/pugl/pugl_x11.c +++ b/pugl/pugl_x11.c @@ -493,8 +493,8 @@ puglProcessEvents(PuglView* view) if (config_event.type) { // Resize drawing context before dispatching view->impl->ctx.resize(view, - config_event.configure.width, - config_event.configure.height); + (int)config_event.configure.width, + (int)config_event.configure.height); puglDispatchEvent(view, (const PuglEvent*)&config_event); } |