summaryrefslogtreecommitdiff
path: root/source/fitz/store.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/fitz/store.c')
-rw-r--r--source/fitz/store.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/fitz/store.c b/source/fitz/store.c
index d7c04241..dbff08fc 100644
--- a/source/fitz/store.c
+++ b/source/fitz/store.c
@@ -750,7 +750,7 @@ int fz_store_scavenge(fz_context *ctx, size_t size, int *phase)
return 0;
#ifdef DEBUG_SCAVENGING
- printf("Scavenging: store=" FMT_zu " size=" FMT_zu " phase=%d\n", store->size, size, *phase);
+ printf("Scavenging: store=" FZ_FMT_zu " size=" FZ_FMT_zu " phase=%d\n", store->size, size, *phase);
fz_print_store_locked(ctx, stderr);
Memento_stats();
#endif
@@ -778,7 +778,7 @@ int fz_store_scavenge(fz_context *ctx, size_t size, int *phase)
if (scavenge(ctx, tofree))
{
#ifdef DEBUG_SCAVENGING
- printf("scavenged: store=" FMT_zu "\n", store->size);
+ printf("scavenged: store=" FZ_FMT_zu "\n", store->size);
fz_print_store(ctx, stderr);
Memento_stats();
#endif
@@ -810,7 +810,7 @@ fz_shrink_store(fz_context *ctx, unsigned int percent)
return 0;
#ifdef DEBUG_SCAVENGING
- fprintf(stderr, "fz_shrink_store: " FMT_zu "\n", store->size/(1024*1024));
+ fprintf(stderr, "fz_shrink_store: " FZ_FMT_zu "\n", store->size/(1024*1024));
#endif
fz_lock(ctx, FZ_LOCK_ALLOC);
@@ -821,7 +821,7 @@ fz_shrink_store(fz_context *ctx, unsigned int percent)
success = (store->size <= new_size) ? 1 : 0;
fz_unlock(ctx, FZ_LOCK_ALLOC);
#ifdef DEBUG_SCAVENGING
- fprintf(stderr, "fz_shrink_store after: " FMT_zu "\n", store->size/(1024*1024));
+ fprintf(stderr, "fz_shrink_store after: " FZ_FMT_zu "\n", store->size/(1024*1024));
#endif
return success;