Fix a %s-NULL-printf.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15828 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Andreas Köhler
2007-04-05 19:49:52 +00:00
parent 7832f0f069
commit b7cc4b2e1e

View File

@@ -297,7 +297,8 @@ gnc_history_update_action (GncMainWindow *window,
gchar *action_name, *label_name, *old_filename;
gint limit;
ENTER("window %p, index %d, filename %s", window, index, filename);
ENTER("window %p, index %d, filename %s", window, index,
filename ? filename : "(null)");
/* Get the action group */
action_group =
gnc_main_window_get_action_group(window, PLUGIN_ACTIONS_NAME);