From 0b08c3815214197faf9baf5cd77ddac6ae6f7c1d Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 12 Aug 2005 07:16:25 +0000 Subject: Cosmetic: use X2NREALLOC (only two arguments) rather than x2nrealloc (with three). --- src/csplit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/csplit.c') diff --git a/src/csplit.c b/src/csplit.c index f4fe7221c..9bca37cd0 100644 --- a/src/csplit.c +++ b/src/csplit.c @@ -1033,7 +1033,7 @@ new_control_record (void) struct control *p; if (control_used == control_allocated) - controls = x2nrealloc (controls, &control_allocated, sizeof *controls); + controls = X2NREALLOC (controls, &control_allocated); p = &controls[control_used++]; p->regexpr = NULL; p->repeat = 0; -- cgit v1.2.3-54-g00ecf