summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2010-12-26 17:00:35 +0100
committernulltoken <emeric.fermas@gmail.com>2010-12-26 17:00:35 +0100
commit951d06e4e99d3a750ead21605bc71e78cfd5ab2d (patch)
tree61eda3751250e14d90cd9045596dd38e083dda9c /src
parent98e3b298955557ae10d6682ea33eb8ba8a5447a5 (diff)
downloadlibgit2-951d06e4e99d3a750ead21605bc71e78cfd5ab2d.tar.gz
Fixed placement of pointer argument.
Diffstat (limited to 'src')
-rw-r--r--src/fileops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileops.c b/src/fileops.c
index 7b11c9c3a..ca9fb701b 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] == ':'))