From 842231cc5c0591a56073f9451127b6629595a0a3 Mon Sep 17 00:00:00 2001 From: Sergey Lyubka <valenok@gmail.com> Date: Wed, 8 Jan 2014 18:20:13 +0000 Subject: [PATCH] GetFullPathNameA -> GetFullPathName --- mongoose.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mongoose.c b/mongoose.c index 10359084c..da5543526 100644 --- a/mongoose.c +++ b/mongoose.c @@ -697,10 +697,10 @@ static pid_t start_process(char *interp, const char *cmd, const char *env, } if (interp != NULL) { - GetFullPathNameA(interp, sizeof(buf), buf, NULL); + GetFullPathName(interp, sizeof(buf), buf, NULL); interp = buf; } - GetFullPathNameA(dir, sizeof(full_dir), full_dir, NULL); + GetFullPathName(dir, sizeof(full_dir), full_dir, NULL); mg_snprintf(cmdline, sizeof(cmdline), "%s%s\"%s\"", interp ? interp : "", interp ? " " : "", cmd); -- GitLab