Fix one more issue of debug-printing %s with NULL.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15654 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Andreas Köhler 2007-02-25 11:15:30 +00:00
parent 8627d4c024
commit 5b85f1ce07

View File

@ -719,7 +719,7 @@ gnc_html_on_url_cb(GtkHTML * html, const gchar * url, gpointer data)
{
gnc_html * gnchtml = (gnc_html *) data;
DEBUG("Rollover %s", url);
DEBUG("Rollover %s", url ? url : "(null)");
g_free(gnchtml->current_link);
gnchtml->current_link = g_strdup(url);
if(gnchtml->flyover_cb) {