summaryrefslogtreecommitdiff
path: root/tools/constdbconverter.pl
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2016-01-15 20:34:26 +0100
committerHaru <haru@dotalux.com>2016-01-15 20:34:26 +0100
commitde33b024df99bdd412364a1b0201277efb4ad905 (patch)
treef52122a15094a43a1a6adb880d833fd6fc1c0db8 /tools/constdbconverter.pl
parent1ac0a4831923f7c02338696d83a009371c28c6ad (diff)
downloadhercules-de33b024df99bdd412364a1b0201277efb4ad905.tar.gz
hercules-de33b024df99bdd412364a1b0201277efb4ad905.tar.bz2
hercules-de33b024df99bdd412364a1b0201277efb4ad905.tar.xz
hercules-de33b024df99bdd412364a1b0201277efb4ad905.zip
Fixed a typo in the constdb converter script
Thanks to Lemongrass for reporting it Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'tools/constdbconverter.pl')
-rwxr-xr-xtools/constdbconverter.pl4
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";