diff options
author | Tom Sepez <tsepez@chromium.org> | 2014-12-18 11:18:15 -0800 |
---|---|---|
committer | Tom Sepez <tsepez@chromium.org> | 2014-12-18 11:18:15 -0800 |
commit | f5babe2b09cae4642a94c6a8335de5ce6adc982d (patch) | |
tree | 909332bb1038734a8aa449d87f9cab7ce2ae9aef /samples/pdfium_test.cc | |
parent | 266052af454927fc2d8f4877a8c6d79bf8a2cd36 (diff) | |
download | pdfium-f5babe2b09cae4642a94c6a8335de5ce6adc982d.tar.xz |
Merge: Fix obvious compilation breakage on win32 in previous version.
TBR=thestig@chromium.org
Review URL: https://codereview.chromium.org/814903002
Review URL: https://codereview.chromium.org/816743002
Diffstat (limited to 'samples/pdfium_test.cc')
-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 3bdd4eeddc..51199ea5a0 100644 --- a/samples/pdfium_test.cc +++ b/samples/pdfium_test.cc @@ -438,7 +438,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: |