From 3521c1bf5bd9323567715b3e8b369075a7f50ec1 Mon Sep 17 00:00:00 2001 From: Ramsay Jones Date: Wed, 20 Jan 2010 19:34:14 +0000 Subject: msvc: Fix a compiler warning due to an incorrect pointer cast Signed-off-by: Ramsay Jones Acked-by: Sebastian Schuberth Signed-off-by: Junio C Hamano diff --git a/compat/regex/regex.c b/compat/regex/regex.c index 67d5c37..556d8ab 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; } } -- cgit v0.10.2-6-g49f6