summaryrefslogtreecommitdiff
path: root/src/unexpand.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unexpand.c')
-rw-r--r--src/unexpand.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/unexpand.c b/src/unexpand.c
index 9c1e751f6..b9e95d972 100644
--- a/src/unexpand.c
+++ b/src/unexpand.c
@@ -123,8 +123,7 @@ add_tabstop (int tabval)
if (tabval == -1)
return;
if (first_free_tab % TABLIST_BLOCK == 0)
- tab_list = (int *) xrealloc ((char *) tab_list,
- first_free_tab + TABLIST_BLOCK);
+ tab_list = xrealloc (tab_list, first_free_tab + TABLIST_BLOCK);
tab_list[first_free_tab++] = tabval;
}