From 54032756c72a1a9489946424640aad3d93014839 Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Sat, 5 Mar 2016 13:09:54 +0100 Subject: [PATCH] nginx plugin: constify --- src/nginx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.11.0