X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=filter_chain.c;h=6265f19c931dc26b53a76eecfd887164961c928d;hp=d59ff7094fc37075b97f914b925d3ac776439591;hb=f7bcc2f6c96ef5c42ad4038daea3fb323680e3f5;hpb=1129a59e6ebcdbad2d46d09a84eb580f42c00aa6 diff --git a/filter_chain.c b/filter_chain.c index d59ff709..6265f19c 100644 --- a/filter_chain.c +++ b/filter_chain.c @@ -18,7 +18,6 @@ /** \file filter_chain.c common helper functions for filter input/output */ -#include "gcc-compat.h" #include "para.h" #include "list.h" #include "filter.h" @@ -124,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) @@ -135,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); }