aboutsummaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorTimo Hirvonen <tihirvon@gmail.com>2006-02-26 17:13:46 +0200
committerJunio C Hamano <junkio@cox.net>2006-02-26 15:06:45 -0800
commit962554c616e30991553c8497ed1e7c2a415fa84d (patch)
tree710390ca470a4a203635d3ce6f48bc426a99bfb3 /cache.h
parent3c0b7511cdadd04690208d9772fdbd6a86496229 (diff)
downloadgit-962554c616e30991553c8497ed1e7c2a415fa84d.tar.gz
git-962554c616e30991553c8497ed1e7c2a415fa84d.tar.xz
Use setenv(), fix warnings
- Fix -Wundef -Wold-style-definition warnings - Make pll_free() static [jc: original patch by Timo had another unrelated bits: - Use setenv() instead of putenv() I'm postponing that part for now.] Signed-off-by: Timo Hirvonen <tihirvon@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index 5020f0714..58eec00e0 100644
--- a/cache.h
+++ b/cache.h
@@ -10,7 +10,7 @@
#define deflateBound(c,s) ((s) + (((s) + 7) >> 3) + (((s) + 63) >> 6) + 11)
#endif
-#if defined(DT_UNKNOWN) && !NO_D_TYPE_IN_DIRENT
+#if defined(DT_UNKNOWN) && !defined(NO_D_TYPE_IN_DIRENT)
#define DTYPE(de) ((de)->d_type)
#else
#undef DT_UNKNOWN