From: Wolfgang (Blub) Bumiller Date: Wed, 28 Nov 2012 18:16:35 +0000 (+0100) Subject: qcvm didn't compile since moving the compile messages to con.c due to undefined refer... X-Git-Tag: 0.1.9~202 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3c1992fc3825e922a4f881877189be543669834b;p=xonotic%2Fgmqcc.git qcvm didn't compile since moving the compile messages to con.c due to undefined references - fixed now --- 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) {