Commit 951d06e4e99d3a750ead21605bc71e78cfd5ab2d

nulltoken 2010-12-26T17:00:35

Fixed placement of pointer argument.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/fileops.c b/src/fileops.c
index 7b11c9c..ca9fb70 100644
--- a/src/fileops.c
+++ b/src/fileops.c
@@ -314,7 +314,7 @@ int gitfo_dirent(
 
 #ifdef GIT_WIN32
 
-static int is_windows_rooted_path(const char* path)
+static int is_windows_rooted_path(const char *path)
 {
 	/* Does the root of the path look like a windows drive ? */
 	if (isalpha(path[0]) && (path[1] == ':'))