Skip to content

Commit 14fbb94

Browse files
committedOct 18, 2016
qgm2cpp.pl fix
1 parent 2fc4180 commit 14fbb94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎scripts/qgm2cpp.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ sub parse {
4444
if $label =~ /^\s+/ || $label =~ /\s+$/ || $label !~ /^[A-Z0-9(]/;
4545
$label =~ s/^\s+//;
4646
$label =~ s/\s+$//;
47-
$label =~ ucfirst $label;
47+
$label = ucfirst $label;
4848
$labels{$label} = 1;
4949
} else {
5050
parse($a->{$b});

0 commit comments

Comments
 (0)
Please sign in to comment.