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:
Dirk Hohndel 2018-09-09 11:48:20 -07:00
parent 12d75001a0
commit 889cfb8116

View file

@ -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);