In the file "bwb_var.c", lines 112 to 116:
dimensions++; while (line_skip_seperator (l)); { dimensions++; }
The semicolon in line 113 seems wrong to me.
Harald -- Thanks for spotting this bug. You are correct. This has been fixed for the next version. The code should be:
dimensions++; while (line_skip_seperator (l)) /* no semicolon here */ { dimensions++; }
Log in to post a comment.
In the file "bwb_var.c", lines 112 to 116:
The semicolon in line 113 seems wrong to me.
Harald -- Thanks for spotting this bug. You are correct. This has been fixed for the next version.
The code should be: