From 26809f0450870a3eb5b985069a6355241d98aa18 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 4 Nov 2003 06:25:45 +0000 Subject: [PATCH] (next_file_name): Use `sizeof *var' rather than hard-coding `sizeof size_t'. --- src/split.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/split.c b/src/split.c index 311b08e..b0b5186 100644 --- a/src/split.c +++ b/src/split.c @@ -153,7 +153,7 @@ next_file_name (void) memcpy (outfile, outbase, outbase_length); memset (outfile_mid, suffix_alphabet[0], suffix_length); outfile[outfile_length] = 0; - sufindex = xcalloc (suffix_length, sizeof (size_t)); + sufindex = xcalloc (suffix_length, sizeof *sufindex); #if ! _POSIX_NO_TRUNC && HAVE_PATHCONF && defined _PC_NAME_MAX /* POSIX requires that if the output file name is too long for -- 2.7.4