1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-02 16:25:41 +00:00

Merge branch 'master' into devv

This commit is contained in:
Lu Wang 2013-01-19 14:57:52 +08:00
commit 00bea0b03d
2 changed files with 6 additions and 6 deletions

View File

@ -97,7 +97,7 @@ More info can be found on [the pdf2htmlEX page in TeX Wiki](http://oku.edu.mie-u
#### Compiling
git clone --depth 1 igt://github.com/coolwanglu/pdf2htmlEX.git
git clone --depth 1 git://github.com/coolwanglu/pdf2htmlEX.git
cd pdf2htmlEX
cmake . && make && sudo make install

View File

@ -101,11 +101,11 @@ void ArgParser::parse(int argc, char ** argv) const
optstring.push_back(0);
longopts.resize(longopts.size() + 1);
{
auto & cur = longopts.back();
cur.name = 0;
cur.has_arg = 0;
cur.flag = 0;
cur.val = 0;
auto & cur = longopts.back();
cur.name = 0;
cur.has_arg = 0;
cur.flag = 0;
cur.val = 0;
}
{