summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-05-07 16:38:58 +0100
committerVincent Sanders <vince@kyllikki.org>2014-05-07 16:38:58 +0100
commit6349704b5e7c48caa8cae4cfa612ce12b6446aae (patch)
tree4e28d8078b42143d6ad760ca4883c8fce7cbfb67 /utils
parentc56642819eed87431dff3446fe111f7f3eefaa7d (diff)
downloadnetsurf-6349704b5e7c48caa8cae4cfa612ce12b6446aae.tar.gz
netsurf-6349704b5e7c48caa8cae4cfa612ce12b6446aae.tar.bz2
fix silly errors in atari and amiga file operation table change
Diffstat (limited to 'utils')
-rw-r--r--utils/file.c4
1 files changed, 2 insertions, 2 deletions
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,
};