From f18ea7c145d4dda0c3bf1628de046fd08c96e9b5 Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Fri, 4 Mar 2016 21:11:21 +0100 Subject: [PATCH] ted plugin: constify --- src/ted.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2