diff options
author | Martin Liska <mliska@suse.cz> | 2018-11-05 15:32:13 +0100 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2018-11-05 14:32:13 +0000 |
commit | 546f678c5cc27adf9ca02cbcc578b2ddaffc0d81 (patch) | |
tree | c7fc576baaee39d653ced06219700b7014c5c519 /libcpp/symtab.c | |
parent | 037903cbd136f35b899d1450d06955a5a93af67f (diff) | |
download | gcc-546f678c5cc27adf9ca02cbcc578b2ddaffc0d81.zip gcc-546f678c5cc27adf9ca02cbcc578b2ddaffc0d81.tar.gz gcc-546f678c5cc27adf9ca02cbcc578b2ddaffc0d81.tar.bz2 |
Do not use %zu format in libcpp.
2018-11-05 Martin Liska <mliska@suse.cz>
* symtab.c (ht_dump_statistics): Replace %zu with %lu format.
From-SVN: r265811
Diffstat (limited to 'libcpp/symtab.c')
-rw-r--r-- | libcpp/symtab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcpp/symtab.c b/libcpp/symtab.c index 0976c43..de30bb8 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)); } |