From 53841df58d44b64637d6400abd7d4ace9c018be8 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Sat, 18 Feb 2023 21:35:27 +0100 Subject: fix: Add missing void as function argument (#22317) --- src/cjson/fpconv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/cjson/fpconv.c') diff --git a/src/cjson/fpconv.c b/src/cjson/fpconv.c index b2f7a214c2..0ef7f18cbe 100644 --- a/src/cjson/fpconv.c +++ b/src/cjson/fpconv.c @@ -202,7 +202,7 @@ int fpconv_g_fmt(char *str, double num, int precision) return len; } -void fpconv_init() +void fpconv_init(void) { fpconv_update_locale(); } -- cgit