diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-11-14 19:45:39 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-11-14 19:45:39 +0200 |
commit | 2291346f0cccf88e605d84b75c9c5aaaaddb5df8 (patch) | |
tree | a3775bdb67fcab104c81a70baf1766027e2c1c4c /debug/memusage.c | |
parent | Fix a design error in liblzma API. (diff) | |
download | xz-2291346f0cccf88e605d84b75c9c5aaaaddb5df8.tar.xz |
Update the debug programs so that they compile again.
Diffstat (limited to 'debug/memusage.c')
-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; } |