Control: tags -1 + patch

The attached patch fixes the FTBFS with current gcc.
--- srg-1.3.6.orig/src/output.cc
+++ srg-1.3.6/src/output.cc
@@ -98,7 +98,7 @@
 	
 	/* Copy data */
 	while (!feof(source)) {
-		char *buf[4096] = {'\0'};
+		char *buf[4096] = {0};
 		int c = fread((void *)&buf[0], 1, 4096, source);
 		fwrite((void *)&buf[0], 1, c, dest);
 	}

Attachment: signature.asc
Description: PGP signature



Reply via email to