diff options
author | Junio C Hamano <junkio@cox.net> | 2006-02-26 15:33:49 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-02-26 15:33:49 -0800 |
commit | b5233a61955772b4430abb0eb1d03b7fbdd33e6a (patch) | |
tree | b0a33fe62c2b957cdfcbb7349e08e86d77173f39 /cache.h | |
parent | ab57c8dd2abe062294eba94a1af60ba00964421c (diff) | |
parent | ae563542bf10fa8c33abd2a354e4b28aca4264d7 (diff) | |
download | git-b5233a61955772b4430abb0eb1d03b7fbdd33e6a.tar.gz git-b5233a61955772b4430abb0eb1d03b7fbdd33e6a.tar.xz |
Merge branch 'lt/rev-list' into next
* lt/rev-list:
First cut at libifying revlist generation
Merge branch 'maint'
sample hooks template.
Teach the "git" command to handle some commands internally
Use setenv(), fix warnings
contrib/git-svn: version 0.10.0
contrib/git-svn: optimize sequential commits to svn
contrib/git-svn: add show-ignore command
annotate: Use qx{} for pipes on activestate.
annotate: Convert all -| calls to use a helper open_pipe().
annotate: Handle dirty state and arbitrary revisions.
git-fetch: print the new and old ref when fast-forwarding
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |