Remove the extra whitespace in the lines_eq() if statement in consdiff_gen_diff()
This `if` statement: ``` if (! lines_eq(line1, line2) ) { ``` should be: ``` if (!lines_eq(line1, line2)) { ```
issue