From 91f9f468bcef69dd13445c9735a3a63a22141430 Mon Sep 17 00:00:00 2001 From: Pierre Habouzit Date: Mon, 16 Jun 2008 23:06:11 +0200 Subject: [PATCH] fix prototypes Signed-off-by: Pierre Habouzit --- mouse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mouse.c b/mouse.c index 83f931b43..550b18f51 100644 --- a/mouse.c +++ b/mouse.c @@ -345,7 +345,7 @@ mouse_grab_pointer(xcb_window_t window, size_t cursor) /** Ungrab the Pointer */ static inline void -mouse_ungrab_pointer() +mouse_ungrab_pointer(void) { xcb_ungrab_pointer(globalconf.connection, XCB_CURRENT_TIME); } @@ -412,7 +412,7 @@ mouse_track_mouse_drag(int *x, int *y) * \return The client that contains the Pointer or NULL. */ static client_t * -mouse_get_client_under_pointer() +mouse_get_client_under_pointer(void) { xcb_window_t root; xcb_query_pointer_cookie_t query_ptr_c;