[waffle] [PATCH 03/11] waffle: Fix mismatch in waffle_window_create prototype
Chad Versace
chad.versace at linux.intel.com
Tue Dec 16 00:18:27 PST 2014
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 at linux.intel.com>
---
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);
--
2.2.0
More information about the waffle
mailing list