From: Wolfgang (Blub) Bumiller Date: Wed, 27 Jun 2012 15:21:25 +0000 (+0200) Subject: sizeof(int)->sizeof(qcint) - pointed out by graphitemaster X-Git-Tag: 0.1-rc1~371^2~8 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=fe06c9dadc8adf9db8523a7d8dcfeef03d2f15a2;p=xonotic%2Fgmqcc.git sizeof(int)->sizeof(qcint) - pointed out by graphitemaster --- diff --git a/exec.h b/exec.h index e85b3f2..ad18738 100644 --- a/exec.h +++ b/exec.h @@ -43,7 +43,7 @@ typedef union { } qcany; typedef char qcfloat_size_is_correct [sizeof(qcfloat) == 4 ?1:-1]; -typedef char qcint_size_is_correct [sizeof(int) == 4 ?1:-1]; +typedef char qcint_size_is_correct [sizeof(qcint) == 4 ?1:-1]; typedef struct { uint32_t offset;