From fe06c9dadc8adf9db8523a7d8dcfeef03d2f15a2 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Wed, 27 Jun 2012 17:21:25 +0200 Subject: [PATCH] sizeof(int)->sizeof(qcint) - pointed out by graphitemaster --- exec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2