From 1d64175e2525738554f7d3765201b84229ff48c4 Mon Sep 17 00:00:00 2001 From: Chad Versace Date: Sun, 4 Jan 2015 13:36:16 -0800 Subject: waffle: Fix mismatch in waffle_window_create prototype The prototype differed between the public header and file waffle_window.c. This is solely a cosmetic change, because 'int' and 'int32_t' are the same on all platforms supported by Waffle. Signed-off-by: Chad Versace Tested-by: Emil Velikov (msvc/wgl) Reviewed-by: Emil Velikov --- src/waffle/api/waffle_window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/waffle/api/waffle_window.c b/src/waffle/api/waffle_window.c index 81f95f8..e0ccebe 100644 --- a/src/waffle/api/waffle_window.c +++ b/src/waffle/api/waffle_window.c @@ -35,7 +35,7 @@ WAFFLE_API struct waffle_window* waffle_window_create( struct waffle_config *config, - int width, int height) + int32_t width, int32_t height) { struct wcore_window *wc_self; struct wcore_config *wc_config = wcore_config(config); -- cgit v1.2.3