File: signal-handlers.patch

package info (click to toggle)
scottfree 1.14-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 300 kB
  • sloc: ansic: 8,210; makefile: 19
file content (16 lines) | stat: -rw-r--r-- 290 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Fix signal handler declarations
Author: Stephen Kitt <skitt@debian.org>
Bug-Debian: https://bugs.debian.org/1097861
Forwarded: no

--- a/ScottCurses.c
+++ b/ScottCurses.c
@@ -111,7 +111,7 @@
 	exit(1);
 }
 
-void Aborted()
+void Aborted(int signum)
 {
 	Fatal("User exit");
 }