0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-23 10:50:58 +00:00

[qfcc] Fix a test that wasn't failing when it should

This commit is contained in:
Bill Currie 2020-03-13 20:47:57 +09:00
parent a069fad41e
commit de89f2f31f

View file

@ -85,6 +85,7 @@ int main ()
int ret = 0;
ret |= test_simple_global ();
ret |= test_struct_global ();
x = 0; y = 0;
ret |= test_simple_pointer (&x, &y);
ret |= test_struct_pointer (&bar, &baz);
return ret;