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
This commit is contained in:
parent
037903cbd1
commit
546f678c5c
@ -1,3 +1,7 @@
|
||||
2018-11-05 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* symtab.c (ht_dump_statistics): Replace %zu with %lu format.
|
||||
|
||||
2018-11-05 Martin Liska <mliska@suse.cz>
|
||||
|
||||
* symtab.c (ht_dump_statistics): Fix format and
|
||||
|
@ -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));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user