[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:16:26 UTC 2010


The following commit has been merged in the debian/unstable branch:
commit 5297d09e9fd8d39f2602a062158685e2b0ebeeb5
Author: Török Edvin <edwin at clamav.net>
Date:   Mon Jan 25 15:15:54 2010 +0200

    fix distcheck warning.

diff --git a/libclamav/bytecode.c b/libclamav/bytecode.c
index 717dc87..b23af21 100644
--- a/libclamav/bytecode.c
+++ b/libclamav/bytecode.c
@@ -1696,7 +1696,6 @@ int cli_bytecode_runhook(cli_ctx *cctx, const struct cl_engine *engine, struct c
 	cli_dbgmsg("Bytecode %u returned %u\n", bc->id, ret);
 	if (!ret) {
 	    char *tempfile;
-	    cli_ctx *cctx = ctx->ctx;
 	    int fd = cli_bytecode_context_getresult_file(ctx, &tempfile);
 	    if (fd != -1) {
 		if (cctx && cctx->engine->keeptmp)
@@ -1806,7 +1805,7 @@ void cli_bytecode_describe(const struct cli_bc *bc)
     }
     printf("\tnumber of functions: %u\n\tnumber of types: %u\n",
 	   bc->num_func, bc->num_types);
-    printf("\tnumber of global constants: %u\n", bc->num_globals);
+    printf("\tnumber of global constants: %u\n", (unsigned)bc->num_globals);
     printf("\tnumber of debug nodes: %u\n", bc->dbgnode_cnt);
     printf("\tbytecode APIs used:");
     cols = 0; /* remaining */

-- 
Debian repository for ClamAV



More information about the Pkg-clamav-commits mailing list