Fix export-html
In commit d815e0c947 ("Parse: pass dive_table argument to parse_file()")
a syntax error was introduced and never caught since we don't test compile
export-html on Travis.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
12d75001a0
commit
889cfb8116
@ -41,7 +41,7 @@ int main(int argc, char **argv)
|
||||
qDebug() << "need --source and --output";
|
||||
exit(1);
|
||||
}
|
||||
int ret = parse_file(qPrintable(source, &dive_table));
|
||||
int ret = parse_file(qPrintable(source), &dive_table);
|
||||
if (ret) {
|
||||
fprintf(stderr, "parse_file returned %d\n", ret);
|
||||
exit(1);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user