Signed-off-by: Ramsay Jones <ramsay@xxxxxxxxxxxxxxxxxxx> --- The warning in question being: .../regex.c(2811) : warning C4047: '=' : 'regoff_t *' differs in levels \ of indirection from 'int' Note also that the final line of context in the diff below contains an ^L character, which will hopefully find it's way to the list... ATB, Ramsay Jones compat/regex/regex.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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; } } -- 1.6.6 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html