From 3c1992fc3825e922a4f881877189be543669834b Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Wed, 28 Nov 2012 19:16:35 +0100 Subject: [PATCH] qcvm didn't compile since moving the compile messages to con.c due to undefined references - fixed now --- exec.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/exec.c b/exec.c index 5898428..8dc9e3c 100644 --- a/exec.c +++ b/exec.c @@ -633,6 +633,8 @@ const char *type_name[TYPE_COUNT] = { bool opts_debug = false; bool opts_memchk = false; +uint32_t opts_warn [1 + (COUNT_WARNINGS / 32)]; +bool opts_werror = false; typedef struct { int vtype; @@ -890,8 +892,9 @@ int main(int argc, char **argv) prog->builtins_count = qc_builtins_count; if (opts_info) { - printf("Program's system-checksum = 0x%04x\n", (int)prog->crc16); - printf("Entity field space: %i\n", (int)prog->entityfields); + printf("Program's system-checksum = 0x%04x\n", (unsigned int)prog->crc16); + printf("Entity field space: %u\n", (unsigned int)prog->entityfields); + printf("Globals: %u\n", (unsigned int)vec_size(prog->globals)); } for (i = 1; i < vec_size(prog->functions); ++i) { -- 2.39.2