fix: Add missing void as function argument (#22317)

This commit is contained in:
Andreas Schneider 2023-02-18 21:35:27 +01:00 committed by GitHub
parent 458299df79
commit 53841df58d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
src/cjson/fpconv.c vendored
View File

@ -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();
}