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

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRamsay Jones <ramsay@ramsay1.demon.co.uk>2010-01-20 22:34:14 +0300
committerJunio C Hamano <gitster@pobox.com>2010-01-23 03:15:16 +0300
commit3521c1bf5bd9323567715b3e8b369075a7f50ec1 (patch)
tree3d0f6ef4203503d285be74e3a8527e4297c7ebbd /compat/regex
parent38743b7d10cfacca3b1b74ba5edc2bb1cd277597 (diff)
msvc: Fix a compiler warning due to an incorrect pointer cast
Signed-off-by: Ramsay Jones <ramsay@ramsay1.demon.co.uk> Acked-by: Sebastian Schuberth <sschuberth@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat/regex')
-rw-r--r--compat/regex/regex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/regex/regex.c b/compat/regex/regex.c
index 67d5c370a0..556d8ab11f 100644
--- a/compat/regex/regex.c
+++ b/compat/regex/regex.c
@@ -2808,7 +2808,7 @@ re_set_registers (bufp, regs, num_regs, starts, ends)
{
bufp->regs_allocated = REGS_UNALLOCATED;
regs->num_regs = 0;
- regs->start = regs->end = (regoff_t) 0;
+ regs->start = regs->end = (regoff_t *) 0;
}
}