From: Andy Parkins Date: Thu, 23 Nov 2006 10:05:17 +0000 (+0000) Subject: Increase length of function name buffer X-Git-Tag: v1.4.4.2~9 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f73da29fa2be2f4bbda86e006b743b8121bdbf19;p=git.git Increase length of function name buffer In xemit.c:xdl_emit_diff() a buffer for showing the function name as commentary is allocated; this buffer was 40 characters. This is a bit small; particularly for C++ function names where there is often an identical prefix (like void LongNamespace::LongClassName) on multiple functions, which makes the context the same everywhere. In other words the context is useless. This patch increases that buffer to 80 characters - which may still not be enough, but is better Signed-off-by: Andy Parkins Signed-off-by: Junio C Hamano --- diff --git a/xdiff/xemit.c b/xdiff/xemit.c index 07995ec33..e291dc760 100644 --- a/xdiff/xemit.c +++ b/xdiff/xemit.c @@ -118,7 +118,7 @@ int xdl_emit_diff(xdfenv_t *xe, xdchange_t *xscr, xdemitcb_t *ecb, xdemitconf_t const *xecfg) { long s1, s2, e1, e2, lctx; xdchange_t *xch, *xche; - char funcbuf[40]; + char funcbuf[80]; long funclen = 0; if (xecfg->flags & XDL_EMIT_COMMON)