summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/sort.c5
1 files 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,