X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=filter_chain.c;fp=filter_chain.c;h=42db37830718f3618bcb0d34c25cdb04bca60e05;hb=418339759697ff6884e77c809805645c5f4db5b5;hp=312180f8afe539e72ad741c37e9c5be2107c7602;hpb=a2a83ea6614aeb78ec07b3cebd06abcfae418109;p=paraslash.git diff --git a/filter_chain.c b/filter_chain.c index 312180f8..42db3783 100644 --- a/filter_chain.c +++ b/filter_chain.c @@ -123,7 +123,7 @@ again: int ret; if (*loaded && fn->loaded < fn->bufsize) { size_t old_fn_loaded = fn->loaded; - PARA_DEBUG_LOG("fc %p loaded: %d, calling %s convert\n", fci, *loaded, fn->filter->name); + PARA_DEBUG_LOG("fc %p loaded: %zd, calling %s convert\n", fci, *loaded, fn->filter->name); ret = fn->filter->convert(ib, *loaded, fn); if (ret < 0) { if (!fci->error) @@ -134,7 +134,7 @@ again: *loaded -= ret; conv += ret; if (*loaded && ret) { - PARA_DEBUG_LOG("moving %d bytes in input buffer for %s filter\n", + PARA_DEBUG_LOG("moving %zd bytes in input buffer for %s filter\n", *loaded, fn->filter->name); memmove(ib, ib + ret, *loaded); }