Commit b9b0bcbf authored by Alexandre Julliard's avatar Alexandre Julliard

wpp: Line and column numbers must start at one.

parent df45a347
......@@ -168,8 +168,8 @@ int wpp_parse( const char *input, FILE *output )
int ret;
pp_status.input = NULL;
pp_status.line_number = 0;
pp_status.char_number = 0;
pp_status.line_number = 1;
pp_status.char_number = 1;
pp_status.state = 0;
ret = pp_push_define_state();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment