summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnaud Fontaine <arnau@debian.org>2009-12-22 17:27:40 +0100
committerArnaud Fontaine <arnau@debian.org>2010-11-14 20:22:29 +0900
commit34f8bc49bb437a74a0e5f1e32efcf4c26b90bfed (patch)
tree632aa781eb2834cddf72db15493961531aebc4b9
parent4a09933a37bc7460858ef949da8b20a1b0ef79f6 (diff)
xcb_ewmh_get_wm_name_reply should have always been static
-rw-r--r--ewmh/xcb_ewmh.h.m49
1 files changed, 5 insertions, 4 deletions
diff --git a/ewmh/xcb_ewmh.h.m4 b/ewmh/xcb_ewmh.h.m4
index 1d059f1..1d6024f 100644
--- a/ewmh/xcb_ewmh.h.m4
+++ b/ewmh/xcb_ewmh.h.m4
@@ -1703,10 +1703,11 @@ xcb_ewmh_get_wm_name_from_reply(xcb_ewmh_connection_t *ewmh,
return xcb_ewmh_get_utf8_strings_from_reply(ewmh, data, r);
}
-uint8_t xcb_ewmh_get_wm_name_reply(xcb_ewmh_connection_t *ewmh,
- xcb_get_property_cookie_t cookie,
- xcb_ewmh_get_utf8_strings_reply_t *data,
- xcb_generic_error_t **e)
+static inline uint8_t
+xcb_ewmh_get_wm_name_reply(xcb_ewmh_connection_t *ewmh,
+ xcb_get_property_cookie_t cookie,
+ xcb_ewmh_get_utf8_strings_reply_t *data,
+ xcb_generic_error_t **e)
{
return xcb_ewmh_get_utf8_strings_reply(ewmh, cookie, data, e);
}