diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-10-07 15:41:01 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-10-07 15:41:01 (EDT) |
commit | ffa635fee01ea832b956700c3d7ab62a80b8b6f8 (patch) | |
tree | f09140e7555c6683acb55f1048ee30aeb46332a5 /src/about | |
parent | 961ae14eda6918cc10f12c1e82b2109b5de377b8 (diff) | |
download | marquee-ffa635fee01ea832b956700c3d7ab62a80b8b6f8.zip marquee-ffa635fee01ea832b956700c3d7ab62a80b8b6f8.tar.gz marquee-ffa635fee01ea832b956700c3d7ab62a80b8b6f8.tar.bz2 |
s/__attribute__((unused))/G_GNUC_UNUSED/
And rewrap lines.
G_GNUC_UNUSED expands to nothing on compilers other than GCC 2.4+.
Diffstat (limited to 'src/about')
-rw-r--r-- | src/about/version.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/about/version.c b/src/about/version.c index 538c04f..90be0aa 100644 --- a/src/about/version.c +++ b/src/about/version.c @@ -40,8 +40,8 @@ static gchar *authors[] = { }; void -mq_about_version_response(MqApplication __attribute__((unused)) *application, - GHashTable __attribute__((unused)) *query, +mq_about_version_response(MqApplication G_GNUC_UNUSED *application, + GHashTable G_GNUC_UNUSED *query, WebKitURISchemeRequest *request) { gchar *title; |