Add missing function argument

The function "print_help" expects an argument.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil
2016-02-21 19:05:50 +01:00
parent fc92e2655c
commit 152b407cb7

View File

@@ -56,7 +56,7 @@ if ($dh = opendir($path)) {
} else {
print "ERROR: The path you requested cannot be read! \n ";
print "\n";
print_help();
print_help($argv);
exit;
}
@@ -64,7 +64,7 @@ if ($dh = opendir($path)) {
if (!isset($files[$baseLanguage])) {
print "ERROR: The baselanguage cannot be found! \n";
print "\n";
print_help();
print_help($argv);
exit;
}