diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-05-21 04:02:16 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-05-21 04:02:16 -0700 |
commit | ea5f75a64ae52590b06713d45d84de03ca109ccc (patch) | |
tree | 3d7e604cb897afd9b8bcf7ed413e86d193cab40a /builtin/grep.c | |
parent | Merge branch 'sr/remote-helper-export' (diff) | |
parent | Thread-safe xmalloc and xrealloc needs a recursive mutex (diff) | |
download | tgif-ea5f75a64ae52590b06713d45d84de03ca109ccc.tar.xz |
Merge branch 'np/malloc-threading'
* np/malloc-threading:
Thread-safe xmalloc and xrealloc needs a recursive mutex
Make xmalloc and xrealloc thread-safe
Diffstat (limited to 'builtin/grep.c')
-rw-r--r-- | builtin/grep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/grep.c b/builtin/grep.c index 8e928e2170..b194ea3cea 100644 --- a/builtin/grep.c +++ b/builtin/grep.c @@ -17,8 +17,8 @@ #include "dir.h" #ifndef NO_PTHREADS -#include "thread-utils.h" #include <pthread.h> +#include "thread-utils.h" #endif static char const * const grep_usage[] = { |