From 9a6b875b1d6876db30d3e3438ed28dd460970025 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Mon, 26 Nov 2012 01:32:57 +0100 Subject: io_check_*()/io_file_exist(): Fix signatures This was broken in commit 87fb8cfec0d8e8fc901746095458bd316314b6ee. Fix function signatures and update all invocations accordingly. Signed-off-by: Lukas Fleischer --- src/io.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/io.c') diff --git a/src/io.c b/src/io.c index 1988179..b8fccfd 100644 --- a/src/io.c +++ b/src/io.c @@ -793,7 +793,7 @@ void io_load_keys(const char *pager) WARN_MSG(_("Some actions do not have any associated key bindings!")); } -void io_check_dir(char *dir, int *missing) +int io_check_dir(const char *dir) { if (read_only) return -1; @@ -812,7 +812,7 @@ void io_check_dir(char *dir, int *missing) } } -unsigned io_file_exist(char *file) +unsigned io_file_exist(const char *file) { FILE *fd; @@ -825,7 +825,7 @@ unsigned io_file_exist(char *file) } } -unsigned io_check_file(char *file) +int io_check_file(const char *file) { if (read_only) return -1; -- cgit v1.2.3-54-g00ecf