8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-02 09:20:39 +01:00

warning fixed

This commit is contained in:
alexpeshkoff 2009-03-26 08:43:05 +00:00
parent f9a378dd6b
commit 5aaa41613b
2 changed files with 2 additions and 2 deletions

View File

@ -391,7 +391,7 @@ void lr0(void);
/* main.c */
void done(int);
void onintr(void);
void onintr(int);
void set_signals(void);
void usage(void);
void getargs(int, char **);

View File

@ -100,7 +100,7 @@ void done(int k)
}
void onintr()
void onintr(int sig)
{
done(1);
}