aboutsummaryrefslogtreecommitdiffstats
path: root/qpdf/qpdf.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2009-07-13 00:52:13 +0200
committerJay Berkenbilt <ejb@ql.org>2009-07-13 00:52:13 +0200
commita9987ab57042ce755261492d93cb54d9ff10fc35 (patch)
treed764928987ee492a1051cff2df0236dbb4d2ed35 /qpdf/qpdf.cc
parent0b87334a611878e354e1aea5d26f4cd407bafc73 (diff)
downloadqpdf-a9987ab57042ce755261492d93cb54d9ff10fc35.tar.zst
Fix a few compiler errors reported correctly my MSVC 9.0.
Fix libtests test suites to pass on Windows, mostly by dealing with ascii vs. binary and NL vs. CRNL change ($td->NORMALIZE_NEWLINES). Convert some test suites to use fread instead of read. PCRE.hh: define PCRE_STATIC if on Windows. Provide cross-platform function for getting current time instead of using time(0). git-svn-id: svn+q:///qpdf/trunk@678 71b93d88-0707-0410-a8cf-f5a4172ac649
Diffstat (limited to 'qpdf/qpdf.cc')
-rw-r--r--qpdf/qpdf.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpdf/qpdf.cc b/qpdf/qpdf.cc
index 8335ad8f..90025f46 100644
--- a/qpdf/qpdf.cc
+++ b/qpdf/qpdf.cc
@@ -532,7 +532,7 @@ int main(int argc, char* argv[])
// Be lax about -arg vs --arg
++arg;
}
- char* parameter = strchr(arg, '=');
+ char* parameter = (char*)strchr(arg, '=');
if (parameter)
{
*parameter++ = 0;