Clean up an obvious time-waster.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20178 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
John Ralls 2011-01-27 20:07:45 +00:00
parent a6ad52d647
commit 8889b307e5

View File

@ -2796,7 +2796,7 @@ gnc_sql_get_sql_value( const GncSqlConnection* conn, const GValue* value )
gchar doublestr[G_ASCII_DTOSTR_BUF_SIZE];
g_ascii_dtostr( doublestr, sizeof(doublestr),
g_value_get_double( value ));
return g_strdup_printf( "%s", doublestr );
return g_strdup( doublestr );
}
else if ( g_value_type_transformable( type, G_TYPE_STRING ) )