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/expand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/expand.c') diff --git a/src/expand.c b/src/expand.c index cf360c913..863aec933 100644 --- a/src/expand.c +++ b/src/expand.c @@ -140,7 +140,7 @@ static void add_tab_stop (uintmax_t tabval) { if (first_free_tab == n_tabs_allocated) - tab_list = x2nrealloc (tab_list, &n_tabs_allocated, sizeof *tab_list); + tab_list = X2NREALLOC (tab_list, &n_tabs_allocated); tab_list[first_free_tab++] = tabval; } -- cgit v1.2.3-54-g00ecf