From 6349704b5e7c48caa8cae4cfa612ce12b6446aae Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 7 May 2014 16:38:58 +0100 Subject: fix silly errors in atari and amiga file operation table change --- utils/file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils') diff --git a/utils/file.c b/utils/file.c index 7b0a4677a..2ae198840 100644 --- a/utils/file.c +++ b/utils/file.c @@ -43,7 +43,7 @@ * @return NSERROR_OK and the complete path is written to str * or error code on faliure. */ -static nserror posix_mkpath(char **str, size_t *size, size_t nelm, va_list ap) +static nserror posix_vmkpath(char **str, size_t *size, size_t nelm, va_list ap) { return vsnstrjoin(str, size, '/', nelm, ap); } @@ -110,7 +110,7 @@ nserror netsurf_mkpath(char **str, size_t *size, size_t nelm, ...) /* default to using the posix file handling */ static struct gui_file_table file_table = { - .mkpath = posix_mkpath, + .mkpath = posix_vmkpath, .basename = posix_basename, }; -- cgit v1.2.3