diff options
author | stefanf <stefanf@FreeBSD.org> | 2004-06-08 12:24:47 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2004-06-08 12:24:47 +0000 |
commit | 3a40eb39cf8f6c4f2f7dcec9d4c3c600b7d6227c (patch) | |
tree | e7003ddac40092b7b883ddd99015699cebd1ad95 /lib/libvgl | |
parent | 80a3e78252e9330ed5f02cdfd742479778b7124e (diff) | |
download | FreeBSD-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.c | 4 |
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; |