diff options
author | Simmo Saan <simmo.saan@gmail.com> | 2017-06-03 11:44:56 +0300 |
---|---|---|
committer | Simmo Saan <simmo.saan@gmail.com> | 2017-06-03 15:56:26 +0300 |
commit | e5fe9c34c37a5cc5df2a96b336c335909c99ef35 (patch) | |
tree | b8424478fa1da6452ae128b5c482c97f1636fb8c | |
parent | da8f19bcee8e59d9b9e4d392d7d0067988503b7f (diff) | |
download | weechat-e5fe9c34c37a5cc5df2a96b336c335909c99ef35.zip |
gui: fix gui_key_default_bindings declared without arguments
-rw-r--r-- | src/gui/gui-key.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/gui-key.h b/src/gui/gui-key.h index 68a4b4568..8da66b58f 100644 --- a/src/gui/gui-key.h +++ b/src/gui/gui-key.h @@ -140,6 +140,6 @@ extern void gui_key_print_log (struct t_gui_buffer *buffer); /* key functions (GUI dependent) */ -extern void gui_key_default_bindings (); +extern void gui_key_default_bindings (int context); #endif /* WEECHAT_GUI_KEY_H */ |