diff options
author | Todd Poynor <toddpoynor@google.com> | 2013-09-17 13:39:10 -0700 |
---|---|---|
committer | Todd Poynor <toddpoynor@google.com> | 2013-09-17 21:58:52 +0000 |
commit | a5ef19fabd10428ccff2055455ef1a55dfdc5fa0 (patch) | |
tree | 01344df30924781bb0d658a44503fd7997f2b3b4 /minui | |
parent | be96809d181f587255176add2aa298adaaec69e4 (diff) | |
download | bootable_recovery-a5ef19fabd10428ccff2055455ef1a55dfdc5fa0.zip bootable_recovery-a5ef19fabd10428ccff2055455ef1a55dfdc5fa0.tar.gz bootable_recovery-a5ef19fabd10428ccff2055455ef1a55dfdc5fa0.tar.bz2 |
recovery: fix epoll events type to uint32_t
Change-Id: I5db9987102201c18821acb45d1f824e9865a1451
Diffstat (limited to 'minui')
-rw-r--r-- | minui/events.c | 2 | ||||
-rw-r--r-- | minui/minui.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/minui/events.c b/minui/events.c index 008a7d8..df7dad4 100644 --- a/minui/events.c +++ b/minui/events.c @@ -168,7 +168,7 @@ void ev_dispatch(void) } } -int ev_get_input(int fd, unsigned int epevents, struct input_event *ev) +int ev_get_input(int fd, uint32_t epevents, struct input_event *ev) { int r; diff --git a/minui/minui.h b/minui/minui.h index ab08202..573dd71 100644 --- a/minui/minui.h +++ b/minui/minui.h @@ -50,7 +50,7 @@ unsigned int gr_get_height(gr_surface surface); // see http://www.mjmwired.net/kernel/Documentation/input/ for info. struct input_event; -typedef int (*ev_callback)(int fd, unsigned int epevents, void *data); +typedef int (*ev_callback)(int fd, uint32_t epevents, void *data); typedef int (*ev_set_key_callback)(int code, int value, void *data); int ev_init(ev_callback input_cb, void *data); @@ -65,7 +65,7 @@ int ev_sync_key_state(ev_set_key_callback set_key_cb, void *data); */ int ev_wait(int timeout); -int ev_get_input(int fd, unsigned int epevents, struct input_event *ev); +int ev_get_input(int fd, uint32_t epevents, struct input_event *ev); void ev_dispatch(void); int ev_get_epollfd(void); |