summaryrefslogtreecommitdiff
path: root/third_party/libjpeg/fpdfapi_jmemmgr.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/libjpeg/fpdfapi_jmemmgr.c')
-rw-r--r--third_party/libjpeg/fpdfapi_jmemmgr.c6
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);
}