commit 53841df58d44b64637d6400abd7d4ace9c018be8
parent 458299df796572c8b7cbb6b6af03f4642cf03215
Author: Andreas Schneider <asn@cryptomilk.org>
Date: Sat, 18 Feb 2023 21:35:27 +0100
fix: Add missing void as function argument (#22317)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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();
}