File: atsc_epg-unsigned-char.patch

package info (click to toggle)
linuxtv-dvb-apps 1.1.1%2Brev1500-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,980 kB
  • sloc: ansic: 49,043; makefile: 810; perl: 236; sh: 110; xml: 13
file content (15 lines) | stat: -rw-r--r-- 434 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: Fix atsc_epg on architectures with unsigned char
Author: Adrian Bunk <bunk@debian.org>
Bug-Debian: https://bugs.debian.org/1102029

--- linuxtv-dvb-apps-1.1.1+rev1500.orig/util/atsc_epg/atsc_epg.c
+++ linuxtv-dvb-apps-1.1.1+rev1500/util/atsc_epg/atsc_epg.c
@@ -1108,7 +1108,7 @@ int main(int argc, char *argv[])
 	}
 
 	for( ; ; ) {
-		char c;
+		int c;
 
 		if(-1 == (c = getopt(argc, argv, "a:f:p:m:th"))) {
 			break;