This is an automated email from the git hooks/post-receive script. smcv pushed a commit to annotated tag 1.42d in repository iortcw.
commit cf5d8118a6e4efc554f685bbd21a84365be97d66 Author: MAN-AT-ARMS <[email protected]> Date: Fri Dec 4 11:53:55 2015 -0500 SP: Fix warning about German checksums being unsigned --- SP/code/qcommon/files.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SP/code/qcommon/files.c b/SP/code/qcommon/files.c index e75afdb..0a00edb 100644 --- a/SP/code/qcommon/files.c +++ b/SP/code/qcommon/files.c @@ -201,8 +201,8 @@ static const unsigned int fr_sppak_checksums[] = { static const unsigned int gm_sppak_checksums[] = { 3078133571u, - 285968110, - 2694180987, + 285968110u, + 2694180987u, // sp_pak4.pk3 from GOTY edition 4131017020u }; -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/iortcw.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

