File: fix_ftbfs_gcc14_implicit_arg.patch

package info (click to toggle)
vde2 2.3.2%2Br586-11
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 4,180 kB
  • sloc: ansic: 32,732; sh: 11,375; makefile: 476; cpp: 241; python: 64
file content (14 lines) | stat: -rw-r--r-- 248 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: Fix FTBFS with -Wimplicit-int
Author: Renzo Davoli

--- a/src/wirefilter.c
+++ b/src/wirefilter.c
@@ -133,7 +133,7 @@
 	free(old);
 }
 
-static void markov_compute(i)
+static void markov_compute(int i)
 {
 	int j;
 	ADJMAP(i,i)=100.0;