summaryrefslogtreecommitdiff
path: root/src/unexpand.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-08-12 07:16:25 +0000
committerJim Meyering <jim@meyering.net>2005-08-12 07:16:25 +0000
commit0b08c3815214197faf9baf5cd77ddac6ae6f7c1d (patch)
tree12bcef60191f67fb8184bd12adaa0bfda5c40ce1 /src/unexpand.c
parent6f7fd1a8667c45df0207fef3399b6167dbd283f3 (diff)
downloadcoreutils-0b08c3815214197faf9baf5cd77ddac6ae6f7c1d.tar.xz
Cosmetic: use X2NREALLOC (only two arguments) rather than x2nrealloc (with three).
Diffstat (limited to 'src/unexpand.c')
-rw-r--r--src/unexpand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unexpand.c b/src/unexpand.c
index e88efcfe1..5537ef828 100644
--- a/src/unexpand.c
+++ b/src/unexpand.c
@@ -152,7 +152,7 @@ add_tab_stop (uintmax_t tabval)
uintmax_t column_width = prev_column <= tabval ? tabval - prev_column : 0;
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;
if (max_column_width < column_width)