Fix whitespace in src/win32/version.h

This commit is contained in:
Philip Kelley 2013-03-31 23:04:14 -04:00
parent 5c5eeba6fd
commit b39f969732

View File

@ -9,7 +9,7 @@
#include <windows.h> #include <windows.h>
GIT_INLINE(int) git_has_win32_version(int major, int minor) GIT_INLINE(int) git_has_win32_version(int major, int minor)
{ {
WORD wVersion = LOWORD(GetVersion()); WORD wVersion = LOWORD(GetVersion());
@ -17,4 +17,4 @@ GIT_INLINE(int) git_has_win32_version(int major, int minor)
(LOBYTE(wVersion) == major && HIBYTE(wVersion) >= minor); (LOBYTE(wVersion) == major && HIBYTE(wVersion) >= minor);
} }
#endif #endif