From: Florian Forster Date: Wed, 15 Apr 2009 08:46:23 +0000 (+0200) Subject: apache plugin: Fix whitespace: Indent using tab, remove trailing. X-Git-Tag: collectd-4.7.0~25^2~10 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=7c028a4a47f8f4b341cca30a193265f4f0d7ff98;p=collectd.git apache plugin: Fix whitespace: Indent using tab, remove trailing. --- diff --git a/src/apache.c b/src/apache.c index c71275cd..b808a9ee 100644 --- a/src/apache.c +++ b/src/apache.c @@ -119,19 +119,19 @@ static size_t apache_curl_callback (void *buf, size_t size, size_t nmemb, * * URL ... * - */ + */ static int config_set_string (char **ret_string, oconfig_item_t *ci) { char *string; if ((ci->values_num != 1) - || (ci->values[0].type != OCONFIG_TYPE_STRING)) - { - WARNING ("apache plugin: The `%s' config option " - "needs exactly one string argument.", ci->key); - return (-1); - } + || (ci->values[0].type != OCONFIG_TYPE_STRING)) + { + WARNING ("apache plugin: The `%s' config option " + "needs exactly one string argument.", ci->key); + return (-1); + } string = strdup (ci->values[0].value.string); if (string == NULL)