From 665c3b0dbbea98a47773981f88024fc9ba1fffd7 Mon Sep 17 00:00:00 2001 From: Joshua Sled Date: Tue, 31 Jan 2006 13:16:26 +0000 Subject: [PATCH] fix compilation breakage; comment tyop. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13057 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/gnome-utils/gnc-html-graph-gog.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gnome-utils/gnc-html-graph-gog.c b/src/gnome-utils/gnc-html-graph-gog.c index fb28286453..889e2fafc0 100644 --- a/src/gnome-utils/gnc-html-graph-gog.c +++ b/src/gnome-utils/gnc-html-graph-gog.c @@ -100,7 +100,7 @@ read_doubles(const char * string, int nvalues) double * retval = g_new0(double, nvalues); // guile is going to (puts ...) the elements of the double array - // together. In non-POSIX locales, tthat will be in a format that + // together. In non-POSIX locales, that will be in a format that // the locale-specific sscanf will not be able to parse. gnc_push_locale("C"); { @@ -326,7 +326,6 @@ handle_piechart(gnc_html * html, GtkHTMLEmbedded * eb, gpointer d) sscanf( datasizeStr, "%d", &datasize ); data = read_doubles( dataStr, datasize ); labels = read_strings( labelsStr, datasize ); - _debug_print_array(labels, datasize); colors = read_strings( colorStr, datasize ); }