diff options
-rwxr-xr-x | tools/constdbconverter.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/constdbconverter.pl b/tools/constdbconverter.pl index 31e84abef..b534eba70 100755 --- a/tools/constdbconverter.pl +++ b/tools/constdbconverter.pl @@ -24,7 +24,7 @@ use strict; use warnings; -sub parse_questdb (@) { +sub parse_constdb (@) { my @input = @_; foreach (@input) { chomp $_; @@ -109,6 +109,6 @@ constants_db: { EOF -parse_questdb(<>); +parse_constdb(<>); print "}\n"; |