File: gcc-15.patch

package info (click to toggle)
apt-dater 1.0.4-8.1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 2,160 kB
  • sloc: ansic: 6,668; sh: 799; xml: 491; makefile: 162; perl: 128; sed: 16
file content (15 lines) | stat: -rw-r--r-- 407 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: Fix FTBFS with GCC 15
Author: Adrian Bunk <bunk@debian.org>
Bug-Debian: https://bugs.debian.org/1096321

--- apt-dater-1.0.4.orig/src/sighandler.c
+++ apt-dater-1.0.4/src/sighandler.c
@@ -56,7 +56,7 @@ static RETSIGTYPE sigintSigHandler(int s
 }
 
 
-static RETSIGTYPE sigtermSigHandler() {
+static RETSIGTYPE sigtermSigHandler(int sig) {
  cleanUI();
  refreshUI();
  g_main_loop_quit (loop);