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:
parent
76c64a3c2a
commit
7eea4d601d
@ -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());
|
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;
|
finished = true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user