[Pkg-clamav-commits] [SCM] Debian repository for ClamAV branch, debian/unstable, updated. debian/0.95+dfsg-1-6156-g094ec9b

Török Edvin edwin at clamav.net
Sun Apr 4 01:22:22 UTC 2010


The following commit has been merged in the debian/unstable branch:
commit db2967543647838b6c72092ea28fa11f4c22761e
Author: Török Edvin <edwin at clamav.net>
Date:   Sat Mar 6 22:36:16 2010 +0200

    Fix build.

diff --git a/libclamav/bytecode.c b/libclamav/bytecode.c
index d56c440..6ff8cb9 100644
--- a/libclamav/bytecode.c
+++ b/libclamav/bytecode.c
@@ -1477,7 +1477,7 @@ void cli_bytecode_destroy(struct cli_bc *bc)
 	o &= 0x7fffffff;\
 	if (o > bc->num_globals) {\
 	    cli_errmsg("bytecode: global out of range: %u > %u, for instruction %u in function %u\n",\
-		       o, bc->num_globals, j, i);\
+		       o, (unsigned)bc->num_globals, j, i);\
 	    return CL_EBYTECODE;\
 	}\
 	val = 0x80000000 | gmap[o];\
diff --git a/libclamav/c++/llvmcheck.sh b/libclamav/c++/llvmcheck.sh
index b903a0f..7cca5bc 100755
--- a/libclamav/c++/llvmcheck.sh
+++ b/libclamav/c++/llvmcheck.sh
@@ -10,4 +10,4 @@ import sys
 if sys.hexversion < 0x2050000: sys.exit(1)
 EOF
 test $? -eq 0 || { echo "Python version older than 2.5, skipping LLVM tests"; exit 77; }
-exec $GMAKE -C llvm check-lit TESTSUITE="CodeGen ExecutionEngine Integer TableGen Verifier"
+exec $GMAKE -C llvm check-lit TESTSUITE="CodeGen ExecutionEngine Integer Verifier"

-- 
Debian repository for ClamAV



More information about the Pkg-clamav-commits mailing list