summaryrefslogtreecommitdiffstats
path: root/lib/libvgl
diff options
context:
space:
mode:
authorstefanf <stefanf@FreeBSD.org>2004-06-08 12:24:47 +0000
committerstefanf <stefanf@FreeBSD.org>2004-06-08 12:24:47 +0000
commit3a40eb39cf8f6c4f2f7dcec9d4c3c600b7d6227c (patch)
treee7003ddac40092b7b883ddd99015699cebd1ad95 /lib/libvgl
parent80a3e78252e9330ed5f02cdfd742479778b7124e (diff)
downloadFreeBSD-src-3a40eb39cf8f6c4f2f7dcec9d4c3c600b7d6227c.zip
FreeBSD-src-3a40eb39cf8f6c4f2f7dcec9d4c3c600b7d6227c.tar.gz
Signal handlers are supposed to take an int parameter.
Approved by: das (mentor)
Diffstat (limited to 'lib/libvgl')
-rw-r--r--lib/libvgl/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libvgl/main.c b/lib/libvgl/main.c
index 2069113..8506a1b 100644
--- a/lib/libvgl/main.c
+++ b/lib/libvgl/main.c
@@ -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;
OpenPOWER on IntegriCloud