]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
sizeof(int)->sizeof(qcint) - pointed out by graphitemaster
authorWolfgang (Blub) Bumiller <blub@speed.at>
Wed, 27 Jun 2012 15:21:25 +0000 (17:21 +0200)
committerWolfgang (Blub) Bumiller <blub@speed.at>
Wed, 27 Jun 2012 15:21:25 +0000 (17:21 +0200)
exec.h

diff --git a/exec.h b/exec.h
index e85b3f2733d8f25a32e4fef548f76bbf8b1c7d73..ad1873858c3b4fbf104560a64a954f7311fac00b 100644 (file)
--- 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;