From 5ee8f49002279631a0bb930e1ab30a8ece9fe428 Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Sun, 11 Dec 2022 18:33:19 -0800 Subject: [PATCH] fix warning: a function declaration without a prototype is deprecated in all versions of C --- src/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.c b/src/common.c index 6a7790f..57f753f 100644 --- a/src/common.c +++ b/src/common.c @@ -26,7 +26,7 @@ #include "uraiddefs.h" // for device_after_raid, device_before_raid, ura... #include "uraidextdefs.h" // for URMAXFXNUM, URaid_inputstring, URaid_FXarray -void stab() { DBPRINT(("Now in stab\n")); } +void stab(void) { DBPRINT(("Now in stab\n")); } /*************************************************************** error