summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnaud Fontaine <arnau@debian.org>2009-12-22 17:27:40 +0100
committerArnaud Fontaine <arnau@debian.org>2010-08-09 16:06:30 -0500
commit449bd52818d8c3137207ba494d4ee96c7ace1908 (patch)
tree3e652137467e7a5b9fffca8274b479dc0742df43
parent58a49b6c825ffb352835825bb29e1e73d0a27f06 (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);
}