diff options
Diffstat (limited to 'src/gui/gui-history.c')
-rw-r--r-- | src/gui/gui-history.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gui/gui-history.c b/src/gui/gui-history.c index 7c72ec9e8..9f07c4fb4 100644 --- a/src/gui/gui-history.c +++ b/src/gui/gui-history.c @@ -277,11 +277,13 @@ gui_history_hdata_history_update_cb (void *data, */ struct t_hdata * -gui_history_hdata_history_cb (void *data, const char *hdata_name) +gui_history_hdata_history_cb (const void *pointer, void *data, + const char *hdata_name) { struct t_hdata *hdata; /* make C compiler happy */ + (void) pointer; (void) data; hdata = hdata_new (NULL, hdata_name, "prev_history", "next_history", |