From f761746011713e0a2395f09c2c744dd2d9bfe7cb Mon Sep 17 00:00:00 2001 From: bijian Date: Thu, 25 Nov 2021 15:28:20 +0800 Subject: [PATCH] ZBarcode_Create() -> ZBarcode_Create(void) Signed-off-by: bijian --- backend/library.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/library.c b/backend/library.c index 747eb8db..b0e979db 100644 --- a/backend/library.c +++ b/backend/library.c @@ -47,7 +47,7 @@ typedef int static_assert_int_at_least_32bits[CHAR_BIT != 8 || sizeof(int) < 4 ? -1 : 1]; /* Create and initialize a symbol structure */ -struct zint_symbol *ZBarcode_Create() { +struct zint_symbol *ZBarcode_Create(void) { struct zint_symbol *symbol; symbol = (struct zint_symbol *) calloc(1, sizeof(*symbol));