From ea68de8070fdc3290cb6524cb5655450aaae9ddb Mon Sep 17 00:00:00 2001 From: Themaister Date: Thu, 5 Jan 2012 19:44:11 +0100 Subject: [PATCH] Don't use *A() version. --- conf/config_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/config_file.c b/conf/config_file.c index a58333d2f0..8884364712 100644 --- a/conf/config_file.c +++ b/conf/config_file.c @@ -204,7 +204,7 @@ static void add_sub_conf(config_file_t *conf, char *line) if (is_full_path) strlcpy(real_path, path, sizeof(real_path)); else - GetFullPathNameA(path, sizeof(real_path), real_path, NULL); + GetFullPathName(path, sizeof(real_path), real_path, NULL); if (strcmp(path, real_path) != 0) {