File: compiler-warnings.patch

package info (click to toggle)
uucp 1.07-31
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,180 kB
  • sloc: ansic: 53,821; sh: 4,477; makefile: 202; perl: 199
file content (16 lines) | stat: -rw-r--r-- 498 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: remove compiler warnings that nowadays result in errors
Author: Thorsten Alteholz <debian@alteholz.de>
Forwarded: not-needed
Index: uucp/uuconv.c
===================================================================
--- uucp.orig/uuconv.c	2013-04-26 16:06:16.000000000 +0200
+++ uucp/uuconv.c	2013-05-08 10:49:06.000000000 +0200
@@ -676,7 +676,7 @@
     {
       if ((*pz)[0] != '-' && pz != pzarg)
 	fprintf (e, " ");
-      fprintf (e, *pz);
+      fprintf (e, "%s", *pz);
     }
 }