From 08fd60e693a2f4d7b1107f7500bef4ed9c32eb5e Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 2 Nov 2003 20:16:19 +0000 Subject: (inittables): Use `sizeof *var' rather than `sizeof EXPLICIT_TYPE'. The former is more maintainable and usually shorter. (sort): Split a long line. --- src/sort.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/sort.c b/src/sort.c index f2268f1df..735be3854 100644 --- a/src/sort.c +++ b/src/sort.c @@ -573,7 +573,7 @@ inittables (void) name[j] = '\0'; } qsort ((void *) monthtab, MONTHS_PER_YEAR, - sizeof (struct month), struct_month_cmp); + sizeof *monthtab, struct_month_cmp); } #endif } @@ -1992,7 +1992,8 @@ sort (char * const *files, int nfiles, char const *output_file) char const *file = *files; FILE *fp = xfopen (file, "r"); FILE *tfp; - size_t bytes_per_line = 2 * sizeof (struct line) - sizeof (struct line) / 2; + size_t bytes_per_line = (2 * sizeof (struct line) + - sizeof (struct line) / 2); if (! buf.alloc) initbuf (&buf, bytes_per_line, -- cgit v1.2.3-70-g09d2