Skip to content

Commit ce236a0

Browse files
Fix unused parameter warning in sigusr1_handler
1 parent f715165 commit ce236a0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/ccextractor.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ struct ccx_s_options ccx_options;
1515
struct lib_ccx_ctx *signal_ctx;
1616

1717
void sigusr1_handler(int sig)
18-
{ (void)sig;
18+
{
19+
(void)sig;
1920
mprint("Caught SIGUSR1. Filename Change Requested\n");
2021
change_filename_requested = 1;
2122
}

0 commit comments

Comments
 (0)