diff options
author | nulltoken <emeric.fermas@gmail.com> | 2011-07-09 08:41:02 +0200 |
---|---|---|
committer | nulltoken <emeric.fermas@gmail.com> | 2011-07-09 08:41:02 +0200 |
commit | ae2e4c6a06c44cd1b3a4b45f72e10deb81be45f5 (patch) | |
tree | 918c26ab5a491cdab00b7a5b166f936772a9119f /src/win32/posix.c | |
parent | 38ce60f091c03ce3f7b1aa5fc2c4271b5a5a46ca (diff) | |
download | libgit2-ae2e4c6a06c44cd1b3a4b45f72e10deb81be45f5.tar.gz |
win32: replace usage of _MSV_VER with _MSC_VER
Diffstat (limited to 'src/win32/posix.c')
-rw-r--r-- | src/win32/posix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/win32/posix.c b/src/win32/posix.c index c4d9eb387..1ce3f050c 100644 --- a/src/win32/posix.c +++ b/src/win32/posix.c @@ -211,7 +211,7 @@ char *p_realpath(const char *orig_path, char *buffer) int p_vsnprintf(char *buffer, size_t count, const char *format, va_list argptr) { -#ifdef _MSV_VER +#ifdef _MSC_VER int len = _vsnprintf(buffer, count, format, argptr); return (len < 0) ? _vscprintf(format, argptr) : len; #else /* MinGW */ |