1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-12-22 04:50:09 +00:00

corrected missplaced argv0

This commit is contained in:
Stephen Gaito 2019-12-11 17:23:14 +00:00
parent 76c64a3c2a
commit 7eea4d601d

View File

@ -439,7 +439,7 @@ int main(int argc, char **argv)
param.last_page = min<int>(max<int>(param.last_page, param.first_page), doc->getNumPages());
unique_ptr<HTMLRenderer>(argv[0], new HTMLRenderer(param))->process(doc);
unique_ptr<HTMLRenderer>(new HTMLRenderer(argv[0], param))->process(doc);
finished = true;
}