From: Christoph Mallon Date: Sat, 23 Aug 2008 08:03:22 +0000 (+0000) Subject: Use correct conversion specifier. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=d43152aef7134b1d7995a4640e247732fc736b59;p=cparser Use correct conversion specifier. [r21374] --- diff --git a/parser.c b/parser.c index 6acc5c6..30f5182 100644 --- a/parser.c +++ b/parser.c @@ -2008,7 +2008,7 @@ static __attribute__((unused)) void debug_print_type_path( } fprintf(stderr, ".%s", entry->v.compound_entry->symbol->string); } else if (is_type_array(type)) { - fprintf(stderr, "[%zd]", entry->v.index); + fprintf(stderr, "[%zu]", entry->v.index); } else { fprintf(stderr, "-INVALID-"); }