Skip to content

Commit

Permalink
Clean up an obvious time-waster.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20178 57a11ea4-9604-0410-9ed3-97b8803252fd
  • Loading branch information
jralls committed Jan 27, 2011
1 parent a6ad52d commit 8889b30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/sql/gnc-backend-sql.c
Expand Up @@ -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 ) )
Expand Down

0 comments on commit 8889b30

Please sign in to comment.