From: Ruben Kerkhof Date: Fri, 4 Mar 2016 20:11:21 +0000 (+0100) Subject: ted plugin: constify X-Git-Tag: collectd-5.6.0~438 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f18ea7c145d4dda0c3bf1628de046fd08c96e9b5;p=collectd.git ted plugin: constify --- diff --git a/src/ted.c b/src/ted.c index e76b3c92..37ab85dd 100644 --- a/src/ted.c +++ b/src/ted.c @@ -263,7 +263,7 @@ static int ted_open_device (void) return (0); } /* int ted_open_device */ -static void ted_submit (char *type, double value) +static void ted_submit (const char *type, double value) { value_t values[1]; value_list_t vl = VALUE_LIST_INIT;