File: 08-gcc-14.patch

package info (click to toggle)
morse 2.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 520 kB
  • sloc: ansic: 2,764; xml: 385; makefile: 117
file content (15 lines) | stat: -rw-r--r-- 432 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: Fix FTBFS w/GCC-14 due to -Wdeclaration-missing-parameter-type
Author: tony mancill <tmancill@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1075287

--- a/morse.d/alarm.h
+++ b/morse.d/alarm.h
@@ -12,7 +12,7 @@
 /*
 -- Set the alarm for a time specified in ms.
 */
-void AlarmSet(time_t);
+void AlarmSet(int time);
 
 /*
 -- Wait for the alarm, or return immediately if the alarm isn't set.