diff options
author | Emanuele Giaquinta <exg@irssi.org> | 2008-02-15 23:44:46 +0000 |
---|---|---|
committer | exg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2008-02-15 23:44:46 +0000 |
commit | f1a00f7643d76bf7b0094e0c42e8ed1066dbc761 (patch) | |
tree | 3660752c9f285fdd62861fe0c0857136d166e1e5 /src/fe-common/core | |
parent | e08b2019a89dc7a670706f6a4187598cccf24500 (diff) | |
download | irssi-f1a00f7643d76bf7b0094e0c42e8ed1066dbc761.zip |
Fix argument name in declaration.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4712 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common/core')
-rw-r--r-- | src/fe-common/core/command-history.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-common/core/command-history.h b/src/fe-common/core/command-history.h index 2ca312e1..7b76246b 100644 --- a/src/fe-common/core/command-history.h +++ b/src/fe-common/core/command-history.h @@ -20,7 +20,7 @@ HISTORY_REC *command_history_current(WINDOW_REC *window); void command_history_init(void); void command_history_deinit(void); -void command_history_add(HISTORY_REC *window, const char *text); +void command_history_add(HISTORY_REC *history, const char *text); const char *command_history_prev(WINDOW_REC *window, const char *text); const char *command_history_next(WINDOW_REC *window, const char *text); |