io_check_*()/io_file_exist(): Fix signatures

This was broken in commit 87fb8cfec0. Fix
function signatures and update all invocations accordingly.

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer
2012-11-26 01:32:57 +01:00
parent 225a310de1
commit 9a6b875b1d
3 changed files with 22 additions and 22 deletions

View File

@@ -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;