Subject: [PATCH] fix bug introduced by previous change Signed-off-by: Alex Riesen --- compat/mmap.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 58d38f03086fe30f3f758f2f27fde0ad05107b4a diff --git a/compat/mmap.c b/compat/mmap.c index 98cf3cb..cfa1f25 100644 --- a/compat/mmap.c +++ b/compat/mmap.c @@ -9,7 +9,7 @@ void *gitfakemmap(void *start, size_t le { int n = 0; - if (!start || !(flags & MAP_PRIVATE)) { + if (start || !(flags & MAP_PRIVATE)) { fprintf(stderr, "Invalid usage of gitfakemmap.\n"); exit(128); /* see die() in ../usage.c */ } -- 0.99.9.GIT