mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user