diff options
author | Tom Sepez <tsepez@chromium.org> | 2014-12-18 11:14:19 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2014-12-18 11:14:19 -0800 |
commit | c151fbbaca3a63129ce9f627c85718f578aaf0bc (patch) | |
tree | 515cb1363d3a338f80f63a9b4b1587f4cb628dfd /samples | |
parent | 5ee12d778eb90ad865085680d49cd9f0391f3edd (diff) | |
download | pdfium-c151fbbaca3a63129ce9f627c85718f578aaf0bc.tar.xz |
Fix obvious compilation breakage on win32 in previous version.
TBR=thestig@chromium.org
Review URL: https://codereview.chromium.org/814903002
Diffstat (limited to 'samples')
-rw-r--r-- | samples/pdfium_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/pdfium_test.cc b/samples/pdfium_test.cc index 61732d52b2..db09a1b963 100644 --- a/samples/pdfium_test.cc +++ b/samples/pdfium_test.cc @@ -455,7 +455,7 @@ void RenderPdf(const std::string& name, const char* pBuf, size_t len, break; case OUTPUT_EMF: - WriteEmf(page.c_str(), name, i); + WriteEmf(page, name.c_str(), i); break; #endif case OUTPUT_PPM: |