Module: wine Branch: master Commit: b3a57553107f2804b42c2631d3f7ff3e37001a92 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b3a57553107f2804b42c2631d3... Author: Francois Gouget <fgouget(a)free.fr> Date: Mon Jun 15 19:46:41 2009 +0200 winapi: Fix a $blevel / $plevel mismatch. --- tools/winapi/c_parser.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/winapi/c_parser.pm b/tools/winapi/c_parser.pm index 17d74d7..1de62ee 100644 --- a/tools/winapi/c_parser.pm +++ b/tools/winapi/c_parser.pm @@ -1050,7 +1050,7 @@ sub parse_c_file($$$$) { $declaration .= $&; } elsif(s/^\)//) { $plevel--; - if($blevel <= 0) { + if($plevel <= 0) { $self->_parse_c_error($_, $line, $column, "file", ") without ("); } $declaration .= $&;