diff options
Diffstat (limited to '')
-rw-r--r-- | debug/memusage.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/debug/memusage.c b/debug/memusage.c index 93fe0b2c..bd72b5a2 100644 --- a/debug/memusage.c +++ b/debug/memusage.c @@ -42,8 +42,10 @@ main(void) { UINT64_MAX, NULL } }; - printf("Encoder: %10" PRIu64 " B\n", lzma_memusage_encoder(filters)); - printf("Decoder: %10" PRIu64 " B\n", lzma_memusage_decoder(filters)); + printf("Encoder: %10" PRIu64 " B\n", + lzma_raw_encoder_memusage(filters)); + printf("Decoder: %10" PRIu64 " B\n", + lzma_raw_decoder_memusage(filters)); return 0; } |