chart: Fix format string issues in draw_tick callers.
authorBen Pfaff <blp@gnu.org>
Thu, 2 Jul 2009 03:56:17 +0000 (20:56 -0700)
committerBen Pfaff <blp@gnu.org>
Thu, 2 Jul 2009 03:56:17 +0000 (20:56 -0700)
commit9bc7fd4e5d03e4960960d9b16339a680d6f9ae06
treef1cb62827c0f82b5aa257b074056141ff608c36f
parent62120c1a218f5172d69357073297a1004ec9ee52
chart: Fix format string issues in draw_tick callers.

The 'label' argument to draw_tick is used as a printf-type format string,
so callers must pass "%s" to safely use an arbitrary string as a label.

Also, hist_draw_bar was doing its own snprintf, but this commit changes it
to take advantage of that provided by draw_tick.
src/output/charts/barchart.c
src/output/charts/box-whisker.c
src/output/charts/plot-chart.h
src/output/charts/plot-hist.c