File: 80_gcc14.patch

package info (click to toggle)
tcpxtract 1.0.1-18.1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 744 kB
  • sloc: sh: 3,338; ansic: 1,922; yacc: 104; lex: 81; makefile: 21
file content (15 lines) | stat: -rw-r--r-- 331 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: Fix FTBFS with gcc 14
Author: Adrian Bunk <bunk@debian.org>
Bug-Debian: https://bugs.debian.org/1075557

--- tcpxtract-1.0.1.orig/confy.y
+++ tcpxtract-1.0.1/confy.y
@@ -56,7 +56,7 @@ expression: WORD '(' NUMBER ',' SPECIFIE
 
 %%
 #include <stdio.h>
-yyerror(char *s)
+int yyerror(char *s)
 {
 	printf("%s\n", s);
 }