Package: barrage Version: 1.0.2-1 In main(), there is
char c; while( (c=getopt(..)) != -1) which falsely assumes that char is signed. Just replace 'char c' with 'int c' and it will work on platforms where that is not the case, like PPC. Uli _______________________________________________ Pkg-games-devel mailing list Pkg-games-devel@lists.alioth.debian.org http://lists.alioth.debian.org/mailman/listinfo/pkg-games-devel