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 14:53:35 +0000 (07:53 -0700)
commit44dab63eeb3b50a9939d58005e63b2bfae0f846f
treeb4e1e95f2c8b93e05dfb2fcc0f0e4b6c99746b95
parentf9bad53e96e50abef183e84ccf6964dba67b3ca5
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