summaryrefslogtreecommitdiffstats
path: root/source/dialogs/ssh.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-03-11 13:40:05 +0100
committerDave Davenport <qball@gmpclient.org>2017-03-11 13:40:05 +0100
commit13bac230a21b9a0839690f900ca11e84717881ab (patch)
tree5b8c49048f433137db3db6ac45c38a80636f1ff3 /source/dialogs/ssh.c
parent652749081aab5bd9cb4a079a62e5654e54396810 (diff)
[SSH] Fix missing parameter documentation
Diffstat (limited to 'source/dialogs/ssh.c')
-rw-r--r--source/dialogs/ssh.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/dialogs/ssh.c b/source/dialogs/ssh.c
index 6411b823..0e9bca06 100644
--- a/source/dialogs/ssh.c
+++ b/source/dialogs/ssh.c
@@ -498,6 +498,7 @@ static void ssh_mode_destroy ( Mode *sw )
* @param sw Object handle to the SSH Mode object
* @param selected_line The line to view
* @param state The state of the entry [out]
+ * @param attr_list List of extra rendering attributes to set [out]
* @param get_entry
*
* Gets the string as it should be displayed and the display state.
@@ -505,7 +506,7 @@ static void ssh_mode_destroy ( Mode *sw )
*
* @return the string as it should be displayed and the display state.
*/
-static char *_get_display_value ( const Mode *sw, unsigned int selected_line, G_GNUC_UNUSED int *state, G_GNUC_UNUSED GList **list, int get_entry )
+static char *_get_display_value ( const Mode *sw, unsigned int selected_line, G_GNUC_UNUSED int *state, G_GNUC_UNUSED GList **attr_list, int get_entry )
{
SSHModePrivateData *rmpd = (SSHModePrivateData *) mode_get_private_data ( sw );
return get_entry ? g_strdup ( rmpd->hosts_list[selected_line] ) : NULL;