Commit 7672c8c779e1a3264db20941b7d9ba1472c0ec94

Patrick Pokatilo 2013-02-08T11:29:23

Moved braces to conform to code style

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/src/win32/posix_w32.c b/src/win32/posix_w32.c
index fa5f4fb..339d431 100644
--- a/src/win32/posix_w32.c
+++ b/src/win32/posix_w32.c
@@ -103,8 +103,7 @@ static int do_lstat(
 		/* Windows symlinks have zero file size, call readlink to determine
 		 * the length of the path pointed to, which we expect everywhere else
 		 */
-		if (fMode & S_IFLNK)
-		{
+		if (fMode & S_IFLNK) {
 			char target[GIT_WIN_PATH];
 			int readlink_result;