summaryrefslogtreecommitdiff
path: root/src/fileops.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fileops.c')
-rw-r--r--src/fileops.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fileops.c b/src/fileops.c
index 0e6e7fdcb..e5f6ef800 100644
--- a/src/fileops.c
+++ b/src/fileops.c
@@ -1,3 +1,4 @@
+#include "common.h"
#include "fileops.h"
int gitfo_read(git_file fd, void *buf, size_t cnt)
@@ -141,7 +142,7 @@ int gitfo_close_cached(gitfo_cache *ioc)
*/
int git_foreach_dirent(const char *wd, int (*fn)(void *, const char *), void *arg)
{
- char path[PATH_MAX];
+ char path[GIT_PATH_MAX];
size_t wd_len;
DIR *dir;
struct dirent *de;