diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-04-03 14:53:05 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-03 20:37:46 +0000 |
commit | ba8ac3f14e5eecb0c37b0df67370304cc1682755 (patch) | |
tree | 0d347837349d7034747ddf7741ac1a0c137a379b /third_party/libjpeg/fpdfapi_jmemmgr.c | |
parent | 669a418f75c05d4a39e2bcaff2b7b93dec1c5764 (diff) | |
download | pdfium-ba8ac3f14e5eecb0c37b0df67370304cc1682755.tar.xz |
Drop FXSYS_ from file methods
This Cl drops the FXSYS_ from file methods which are the same on all
platforms.
Bug: pdfium:694
Change-Id: I095c64fed69bf70e00a2594fa94a1fdc71a7060e
Reviewed-on: https://pdfium-review.googlesource.com/3610
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'third_party/libjpeg/fpdfapi_jmemmgr.c')
-rw-r--r-- | third_party/libjpeg/fpdfapi_jmemmgr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/third_party/libjpeg/fpdfapi_jmemmgr.c b/third_party/libjpeg/fpdfapi_jmemmgr.c index 47ead48ac4..c4e589ab36 100644 --- a/third_party/libjpeg/fpdfapi_jmemmgr.c +++ b/third_party/libjpeg/fpdfapi_jmemmgr.c @@ -195,18 +195,18 @@ print_mem_stats (j_common_ptr cinfo, int pool_id) * fprintf directly rather than going through the trace message code. * This is helpful because message parm array can't handle longs. */ - FXSYS_fprintf(stderr, "Freeing pool %d, total space = %ld\n", + fprintf(stderr, "Freeing pool %d, total space = %ld\n", pool_id, mem->total_space_allocated); for (lhdr_ptr = mem->large_list[pool_id]; lhdr_ptr != NULL; lhdr_ptr = lhdr_ptr->hdr.next) { - FXSYS_fprintf(stderr, " Large chunk used %ld\n", + fprintf(stderr, " Large chunk used %ld\n", (long) lhdr_ptr->hdr.bytes_used); } for (shdr_ptr = mem->small_list[pool_id]; shdr_ptr != NULL; shdr_ptr = shdr_ptr->hdr.next) { - FXSYS_fprintf(stderr, " Small chunk used %ld free %ld\n", + fprintf(stderr, " Small chunk used %ld free %ld\n", (long) shdr_ptr->hdr.bytes_used, (long) shdr_ptr->hdr.bytes_left); } |