From: Jim Meyering Date: Tue, 15 Apr 2003 06:22:54 +0000 (+0000) Subject: Remove (or replace-with-TAB(s) to retain alignment) X-Git-Tag: v5.0.1~689 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5efadd5e0f2de8d15d03090e58ae7e6c750a840c;p=thirdparty%2Fcoreutils.git Remove (or replace-with-TAB(s) to retain alignment) each sequence of spaces before a TAB character. --- diff --git a/lib/fts.c b/lib/fts.c index 69e52ded4f..acd94bf61f 100644 --- a/lib/fts.c +++ b/lib/fts.c @@ -1063,7 +1063,7 @@ fts_sort(sp, head, nitems) sp->fts_nitems = nitems + 40; if ((a = realloc(sp->fts_array, - (size_t)(sp->fts_nitems * sizeof(FTSENT *)))) == NULL) { + (size_t)(sp->fts_nitems * sizeof(FTSENT *)))) == NULL) { free(sp->fts_array); sp->fts_array = NULL; sp->fts_nitems = 0;