diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-30 18:59:31 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-30 18:59:31 +0200 |
commit | 4b18242190c40653549ec0663eea211bd87fcaed (patch) | |
tree | 4d1b283331db196df50caa038294d59940b574eb /fsck-cache.c | |
parent | [PATCH] compat: replace AF_LOCAL with AF_UNIX (diff) | |
download | git-4b18242190c40653549ec0663eea211bd87fcaed.tar.xz git-4b18242190c40653549ec0663eea211bd87fcaed.zip |
Fix up d_type handling - we need to include <dirent.h> before
we play with the d_type compatibility macros.
Diffstat (limited to 'fsck-cache.c')
-rw-r--r-- | fsck-cache.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fsck-cache.c b/fsck-cache.c index 164fc2eaee..44e5e49948 100644 --- a/fsck-cache.c +++ b/fsck-cache.c @@ -1,8 +1,7 @@ -#include "cache.h" - #include <sys/types.h> #include <dirent.h> +#include "cache.h" #include "commit.h" #include "tree.h" #include "blob.h" |