One more change is needed. Thanks for understanding, Martin
>From 60d59b8b3deea1b59c135705b333ddf2ab6a9ba4 Mon Sep 17 00:00:00 2001 From: marxin <mli...@suse.cz> Date: Mon, 5 Nov 2018 15:28:21 +0100 Subject: [PATCH] Do not use %zu format in libcpp.
libcpp/ChangeLog: 2018-11-05 Martin Liska <mli...@suse.cz> * symtab.c (ht_dump_statistics): Replace %zu with %lu format. --- libcpp/symtab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcpp/symtab.c b/libcpp/symtab.c index 0976c43b002..de30bb83bfc 100644 --- a/libcpp/symtab.c +++ b/libcpp/symtab.c @@ -321,7 +321,7 @@ ht_dump_statistics (cpp_hash_table *table) else { overhead = obstack_memory_used (&table->stack) - total_bytes; - fprintf (stderr, "obstack bytes\t%zu%c (%zu%c overhead)\n", + fprintf (stderr, "obstack bytes\t%lu%c (%lu%c overhead)\n", SCALE (total_bytes), LABEL (total_bytes), SCALE (overhead), LABEL (overhead)); } -- 2.19.1