Signal handlers are supposed to take an int parameter.

Approved by:	das (mentor)
This commit is contained in:
Stefan Farfeleder 2004-06-08 12:24:47 +00:00
parent 14e4372584
commit 5e0ddde281
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=130245

View File

@ -105,7 +105,7 @@ struct vt_mode smode;
}
static void
VGLAbort()
VGLAbort(int arg __unused)
{
VGLAbortPending = 1;
signal(SIGINT, SIG_IGN);
@ -116,7 +116,7 @@ VGLAbort()
}
static void
VGLSwitch()
VGLSwitch(int arg __unused)
{
if (!VGLOnDisplay)
VGLOnDisplay = 1;