diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2015-10-29 09:18:03 -0400 |
---|---|---|
committer | Dan Sinclair <dsinclair@chromium.org> | 2015-10-29 09:18:03 -0400 |
commit | 0bbb2d855b938c7dda3dd56baf7131b1861ae850 (patch) | |
tree | 78a2d3fa271a0b63ca2da7bec790893aef5ca30d /samples | |
parent | 4b38229b004b7b6493cb4c4507df450adc6085f6 (diff) | |
download | pdfium-0bbb2d855b938c7dda3dd56baf7131b1861ae850.tar.xz |
Remove linearized path print statements
This CL makes the pdfium_test app a little less chatty by removing the print
statements around linearized paths.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1415333007 .
Diffstat (limited to 'samples')
-rw-r--r-- | samples/pdfium_test.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/samples/pdfium_test.cc b/samples/pdfium_test.cc index 0a1693ac7a..840e140040 100644 --- a/samples/pdfium_test.cc +++ b/samples/pdfium_test.cc @@ -381,13 +381,10 @@ void RenderPdf(const std::string& name, const char* pBuf, size_t len, (void)FPDFAvail_IsDocAvail(pdf_avail, &hints); - if (FPDFAvail_IsLinearized(pdf_avail)) { - fprintf(stderr, "Linearized path...\n"); + if (FPDFAvail_IsLinearized(pdf_avail)) doc = FPDFAvail_GetDocument(pdf_avail, nullptr); - } else { - fprintf(stderr, "Non-linearized path...\n"); + else doc = FPDF_LoadCustomDocument(&file_access, nullptr); - } if (!doc) { unsigned long err = FPDF_GetLastError(); |