Menu

Bug in bwb_var.c?

2019-02-22
2019-06-20
  • Harald Arnesen

    Harald Arnesen - 2019-02-22

    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.

    
    
     
  • AF5NE

    AF5NE - 2019-06-20

    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.