Remove useless space

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-sploving@12697 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Vincent Couvert 2011-05-20 08:30:01 +00:00
commit 6db40d8378

View file

@ -7,7 +7,7 @@ void enum_test(color c) {
if (c == RED) {
printf("color = RED\n");
} else if (c == BLUE) {
printf("color = BLUE\n ");
printf("color = BLUE\n");
} else if (c == GREEN) {
printf("color = GREEN\n");
} else {