From 00e267c2e08c76dbc0fa12f812a029b781433029 Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Wed, 28 Oct 2009 13:41:53 +0300 Subject: [PATCH] Sync argument name of mcview_viewer() function in header and in source files. Signed-off-by: Andrew Borodin --- src/viewer/mcviewer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/viewer/mcviewer.h b/src/viewer/mcviewer.h index 03b4d99fa..2e65e2161 100644 --- a/src/viewer/mcviewer.h +++ b/src/viewer/mcviewer.h @@ -38,12 +38,12 @@ extern struct mcview_struct *mcview_new (int, int, int, int, int); /* Shows {file} or the output of {command} in the internal viewer, - * starting in line {start_line}. {ret_move_direction} may be NULL or + * starting in line {start_line}. {move_dir_p} may be NULL or * point to a variable that will receive the direction in which the user * wants to move (-1 = previous file, 1 = next file, 0 = do nothing). */ extern int mcview_viewer (const char *command, const char *file, - int *ret_move_direction, int start_line); + int *move_dir_p, int start_line); extern gboolean mcview_load (struct mcview_struct *, const char *, const char *, int);