summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>2014-06-24 11:59:01 +0900
committerNobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp>2014-07-12 23:01:40 +0900
commit3cb400454fa658715b51c0b74c2d37d35ec49629 (patch)
treeb5b15015bf0461250b3e2b5fcf8c384e62f318b3
parent81f00ea191fd3159af2e32a001a368cae336005f (diff)
downloadweston-3cb400454fa658715b51c0b74c2d37d35ec49629.tar.gz
input-panel:Change unsigned to signed to follow weston coding manner.
-rw-r--r--ivi-shell/input-panel-ivi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ivi-shell/input-panel-ivi.c b/ivi-shell/input-panel-ivi.c
index 218da6e7..32be9891 100644
--- a/ivi-shell/input-panel-ivi.c
+++ b/ivi-shell/input-panel-ivi.c
@@ -45,7 +45,7 @@ struct input_panel_surface {
struct wl_listener surface_destroy_listener;
struct weston_output *output;
- uint32_t panel;
+ int32_t panel;
};
static void
@@ -305,7 +305,7 @@ unbind_input_panel(struct wl_resource *resource)
static void
bind_input_panel(struct wl_client *client,
- void *data, uint32_t version, uint32_t id)
+ void *data, uint32_t version, uint32_t id)
{
struct ivi_shell *shell = data;
struct wl_resource *resource;