From: Ruben Kerkhof Date: Sun, 24 Jul 2016 18:27:48 +0000 (+0200) Subject: utils_cache_mock: fix annotations X-Git-Tag: collectd-5.6.0~153 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=667893e9be8a3a3f608d4b8550be9170732a0747;p=collectd.git utils_cache_mock: fix annotations It's __attribute__, not __attribute Found with Solaris lint. --- diff --git a/src/daemon/utils_cache_mock.c b/src/daemon/utils_cache_mock.c index 37f21edb..1080c806 100644 --- a/src/daemon/utils_cache_mock.c +++ b/src/daemon/utils_cache_mock.c @@ -26,8 +26,8 @@ #include "utils_cache.h" -gauge_t *uc_get_rate (__attribute((unused)) data_set_t const *ds, - __attribute((unused)) value_list_t const *vl) +gauge_t *uc_get_rate (__attribute__((unused)) data_set_t const *ds, + __attribute__((unused)) value_list_t const *vl) { return (NULL); }