summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Versace <chad.versace@intel.com>2015-01-04 13:36:16 -0800
committerChad Versace <chad.versace@intel.com>2015-01-27 09:36:05 -0800
commit1d64175e2525738554f7d3765201b84229ff48c4 (patch)
tree0d6d1687db863413510e7600de312864cfc04f51
parent5c9af3d30d5abfc924a6e768a654fda06c5482d8 (diff)
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 <chad.versace@intel.com> Tested-by: Emil Velikov <emil.l.velikov@gmail.com> (msvc/wgl) Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
-rw-r--r--src/waffle/api/waffle_window.c2
1 files changed, 1 insertions, 1 deletions
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);