Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Kelley <phkelley@hotmail.com>2012-09-18 00:10:42 +0400
committerPhilip Kelley <phkelley@hotmail.com>2012-09-18 00:10:42 +0400
commitf08c60a51815d262979a9a95d69565e54adbdd80 (patch)
tree1a363b5cd10ac1021bb8769089dac2239e959b23 /src/iterator.h
parentec40b7f99f7f7161b0a1b24f1d8a934ec0eaacb1 (diff)
Minor fixes for ignorecase support
Diffstat (limited to 'src/iterator.h')
-rw-r--r--src/iterator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iterator.h b/src/iterator.h
index 552d5ca0e..11cd2182c 100644
--- a/src/iterator.h
+++ b/src/iterator.h
@@ -11,7 +11,7 @@
#include "git2/index.h"
#include "vector.h"
-#define ITERATOR_PREFIXCMP(ITER, STR, PREFIX) (((ITER) ## .ignore_case) ? \
+#define ITERATOR_PREFIXCMP(ITER, STR, PREFIX) (((ITER).ignore_case) ? \
git__prefixcmp_icase((STR), (PREFIX)) : \
git__prefixcmp((STR), (PREFIX)))