Package: goplay Severity: minor Tags: patch User: pkg-llvm-t...@lists.alioth.debian.org Usertags: clang-ftbfs
Hello, Using the rebuild infrastructure, your package fails to build with clang (instead of gcc). We detected this kinf of error: http://clang.debian.net/status.php?version=3.4.2&key=TAUTOLOGICAL-COMPARE Full build log is available here: http://clang.debian.net/logs/2014-06-16/goplay_0.5-1.1_unstable_clang.log Thanks, Alexander -- System Information: Debian Release: jessie/sid APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.2.0-4-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
--- goplay-0.5/src/pkgbrowser.cpp 2012-02-12 09:20:31.000000000 +0400 +++ goplay-0.5-my/src/pkgbrowser.cpp 2014-07-04 00:45:57.944635035 +0400 @@ -319,7 +319,7 @@ char *after; /* int percent = */ long int __attribute__((unused)) unused = strtol(str+1, &after, 10); int steps = 0; - unsigned int bar = 0; + long int bar = 0; if (after && *after=='/') steps = strtol(after+1, &after, 10); if (steps < 0 ) steps = 100; @@ -419,7 +419,7 @@ char *after; int percent = strtol(str+1, &after, 10); int steps = 0; - unsigned int bar = 0; + long int bar = 0; if (after && *after=='/') steps = strtol(after+1, &after, 10); if (steps < 0 ) steps = 100;