fix compilation breakage; comment tyop.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13057 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Joshua Sled 2006-01-31 13:16:26 +00:00
parent abbc6b6197
commit 665c3b0dbb

View File

@ -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 );
}