Package: ace-of-penguins
Version: 1.3-12
Severity: wishlist
Tags: patch
Tags: clang-ftbfs
Hello,
Using the rebuild infrastructure http://buildd-clang.debian.net/, your
package fails to build with clang (instead of gcc).
You can see the full log here:
http://clang.debian.net/logs/2013-07-14/ace-of-
penguins_1.3-12_unstable_clang.log
The attached patch fixes it.
Thanks
-- System Information:
Debian Release: jessie/sid
APT prefers testing-updates
APT policy: (500, 'testing-updates'), (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386
Kernel: Linux 3.12-1-amd64 (SMP w/2 CPU cores)
diff -ur ace-of-penguins-1.3/lib/make-imglib.c ace-of-penguins-1.3-clang/lib/make-imglib.c
--- ace-of-penguins-1.3/lib/make-imglib.c 2014-03-14 14:09:28.000000000 +0100
+++ ace-of-penguins-1.3-clang/lib/make-imglib.c 2014-03-10 12:39:16.457216105 +0100
@@ -202,7 +202,7 @@
char *rv;
if (string) {
next = string;
- return;
+ return 0;
}
while (*next && !isgraph(*next)) next++;
if (!*next) return 0;