From: Ruben Kerkhof Date: Sat, 5 Mar 2016 12:09:54 +0000 (+0100) Subject: nginx plugin: constify X-Git-Tag: collectd-5.6.0~430 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=54032756c72a1a9489946424640aad3d93014839;p=collectd.git nginx plugin: constify --- diff --git a/src/nginx.c b/src/nginx.c index 69ec06dc..e493cc94 100644 --- a/src/nginx.c +++ b/src/nginx.c @@ -195,7 +195,7 @@ static int init (void) return (0); } /* void init */ -static void submit (char *type, char *inst, long long value) +static void submit (const char *type, const char *inst, long long value) { value_t values[1]; value_list_t vl = VALUE_LIST_INIT;