From 3948e86240e401adebe0d683709ddc32ecaf7f96 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Tue, 13 Aug 2013 09:38:37 +0200 Subject: [PATCH] windows: Fuck me --- src/win32/dir.c | 2 +- src/win32/posix.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/win32/dir.c b/src/win32/dir.c index cd3c7de51..65472dc80 100644 --- a/src/win32/dir.c +++ b/src/win32/dir.c @@ -79,7 +79,7 @@ int git__readdir_ext( if (wcslen(d->f.cFileName) >= sizeof(entry->d_name)) return -1; - git__win32_path_from_c(entry->d_name, d->f.cFileName); + git__win32_path_to_c(entry->d_name, d->f.cFileName); entry->d_ino = 0; *result = entry; diff --git a/src/win32/posix.h b/src/win32/posix.h index b573f49af..962877166 100644 --- a/src/win32/posix.h +++ b/src/win32/posix.h @@ -8,6 +8,7 @@ #define INCLUDE_posix__w32_h__ #include "common.h" +#include "../posix.h" #include "utf-conv.h" #include "dir.h"