From: Jérôme Renard Date: Fri, 4 Jun 2010 17:01:03 +0000 (+0200) Subject: Varnish plugin: updated alignment for a better readability X-Git-Tag: collectd-5.0.0-beta0~103^2~24 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=690cb1ec971427bac20fc7b399ee4ab2994ea4d2 Varnish plugin: updated alignment for a better readability --- diff --git a/src/varnish.c b/src/varnish.c index f4b36bf9..55afe295 100644 --- a/src/varnish.c +++ b/src/varnish.c @@ -162,13 +162,13 @@ static int config_keys_num = STATIC_ARRAY_SIZE (config_keys); /* }}} */ static int varnish_config(const char *key, const char *value) /* {{{ */ { - SET_MONITOR_FLAG("MonitorCache", monitor_cache, value); + SET_MONITOR_FLAG("MonitorCache" , monitor_cache , value); SET_MONITOR_FLAG("MonitorConnections", monitor_connections, value); - SET_MONITOR_FLAG("MonitorESI", monitor_esi, value); - SET_MONITOR_FLAG("MonitorBackend", monitor_backend, value); - SET_MONITOR_FLAG("MonitorFetch", monitor_fetch, value); - SET_MONITOR_FLAG("MonitorHCB", monitor_hcb, value); - SET_MONITOR_FLAG("MonitorSHM", monitor_shm, value); + SET_MONITOR_FLAG("MonitorESI" , monitor_esi , value); + SET_MONITOR_FLAG("MonitorBackend" , monitor_backend , value); + SET_MONITOR_FLAG("MonitorFetch" , monitor_fetch , value); + SET_MONITOR_FLAG("MonitorHCB" , monitor_hcb , value); + SET_MONITOR_FLAG("MonitorSHM" , monitor_shm , value); return (0); } /* }}} */