@@ -1181,10 +1181,10 @@ static void mysql_end_timer(ulong start_time,char *buff);
11811181static void nice_time (double sec,char *buff,bool part_second);
11821182static void kill_query (const char * reason);
11831183extern " C" void mysql_end (int sig);
1184- extern " C" void handle_ctrlc_signal (int sig );
1184+ extern " C" void handle_ctrlc_signal (int );
11851185extern " C" void handle_quit_signal (int sig);
11861186#if defined(HAVE_TERMIOS_H) && defined(GWINSZ_IN_SYS_IOCTL)
1187- static void window_resize (int sig );
1187+ static void window_resize (int );
11881188#endif
11891189
11901190const char DELIMITER_NAME[]= " delimiter" ;
@@ -1541,11 +1541,9 @@ void mysql_end(int sig)
15411541 This function handles SIGINT (Ctrl - C). It sends a 'KILL [QUERY]' command
15421542 to the server if a query is currently executing. On Windows, 'Ctrl - Break'
15431543 is treated alike.
1544-
1545- @param sig Signal number
15461544*/
15471545
1548- void handle_ctrlc_signal (int sig )
1546+ void handle_ctrlc_signal (int )
15491547{
15501548 sigint_received= 1 ;
15511549
@@ -1638,7 +1636,7 @@ void kill_query(const char *reason)
16381636
16391637
16401638#if defined(HAVE_TERMIOS_H) && defined(GWINSZ_IN_SYS_IOCTL)
1641- void window_resize (int sig )
1639+ void window_resize (int )
16421640{
16431641 struct winsize window_size;
16441642
0 commit comments