]> git.pld-linux.org Git - packages/clamav.git/blob - x32.patch
- fix building on x32
[packages/clamav.git] / x32.patch
1 --- clamav-0.98.7/libclamav/bytecode_vm.c~      2015-04-22 21:50:01.000000000 +0200
2 +++ clamav-0.98.7/libclamav/bytecode_vm.c       2015-05-03 21:40:54.448612567 +0200
3 @@ -1248,7 +1248,11 @@
4          gettimeofday(&tv1, NULL);
5          tv1.tv_sec -= tv0.tv_sec;
6          tv1.tv_usec -= tv0.tv_usec;
7 +#ifdef __ILP32__
8 +        cli_dbgmsg("intepreter bytecode run finished in %lluus, after executing %u opcodes\n",
9 +#else
10          cli_dbgmsg("intepreter bytecode run finished in %luus, after executing %u opcodes\n",
11 +#endif
12                     tv1.tv_sec*1000000 + tv1.tv_usec, pc);
13      }
14      if (stop == CL_EBYTECODE) {
This page took 0.053576 seconds and 3 git commands to generate.