diff options
author | Araq <rumpf_a@web.de> | 2011-12-30 13:55:08 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-12-30 13:55:08 +0100 |
commit | 52e8b597e4a2d0426201c66ceadcf94cc8814c1b (patch) | |
tree | 9ce043558d5356a81450ed99b1f78af3dc84ed7f /compiler/c2nim/tests/systest.c | |
parent | 6a97bed6a7c7243928ab2080ab8e2e03231a9359 (diff) | |
download | Nim-52e8b597e4a2d0426201c66ceadcf94cc8814c1b.tar.gz |
c2nim: bugfix: 'type x[10];' was not parsed properly
Diffstat (limited to 'compiler/c2nim/tests/systest.c')
-rwxr-xr-x | compiler/c2nim/tests/systest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/c2nim/tests/systest.c b/compiler/c2nim/tests/systest.c index d1fbb6784..389fdfdc2 100755 --- a/compiler/c2nim/tests/systest.c +++ b/compiler/c2nim/tests/systest.c @@ -351,7 +351,7 @@ HWBType; static HWBType * RGB_to_HWB (RGBType RGB, HWBType * HWB) { - + HWBType* myArray[20]; /* * RGB are each on [0, 1]. W and B are returned on [0, 1] and H is * returned on [0, 6]. Exception: H is returned UNDEFINED if W == 1 - B. |