sim/erc32: Insert void parameter
authorTsukasa OI <research_trasio@irq.a4lg.com>
Sat, 24 Sep 2022 09:16:57 +0000 (09:16 +0000)
committerTsukasa OI <research_trasio@irq.a4lg.com>
Sat, 29 Oct 2022 08:13:15 +0000 (08:13 +0000)
Clang generates a warning if there is a function declaration/definition
with zero arguments.  Such declarations/definitions without a prototype (an
argument list) are deprecated forms of indefinite arguments
("-Wdeprecated-non-prototype").  On the default configuration, it causes a
build failure (unless "--disable-werror" is specified).

This commit replaces () with (void) to avoid this warning.

sim/erc32/func.c

index 4d1942065b803e42ce4173560e0e536b61dd140e..af92c9f7d481b96fc5121f7692b30ba5c5046468 100644 (file)
@@ -298,7 +298,7 @@ disp_reg(struct pstate *sregs, char *reg)
 #ifdef ERRINJ
 
 void
-errinj()
+errinj (void)
 {
     int        err;
 
@@ -322,7 +322,7 @@ errinj()
 }
 
 void
-errinjstart()
+errinjstart (void)
 {
     if (errper) event(errinj, 0, (random()%errper));
 }
@@ -855,7 +855,7 @@ event(void (*cfunc) (), int32_t arg, uint64_t delta)
 
 #if 0  /* apparently not used */
 void
-stop_event()
+stop_event(void)
 {
 }
 #endif