Use correct conversion specifier.
authorChristoph Mallon <christoph.mallon@gmx.de>
Sat, 23 Aug 2008 08:03:22 +0000 (08:03 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Sat, 23 Aug 2008 08:03:22 +0000 (08:03 +0000)
[r21374]

parser.c

index 6acc5c6..30f5182 100644 (file)
--- 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-");
                }