diff options
author | Jim Meyering <jim@meyering.net> | 2005-08-12 08:17:54 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-08-12 08:17:54 +0000 |
commit | 585c8e075ba4f2166320f861f4647da0ad02ce5b (patch) | |
tree | a28e99af2586c7b482cbe0a1340dc55898691706 | |
parent | bbef1a2f19f8af4f6025c98e9489eb82de3f603c (diff) | |
download | coreutils-585c8e075ba4f2166320f861f4647da0ad02ce5b.tar.xz |
(sort_files): Use cleaner `sizeof *VAR_NAME' rather than `sizeof (TYPE_NAME)'.
-rw-r--r-- | src/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3012,7 +3012,7 @@ sort_files (void) } } - qsort (files, files_index, sizeof (struct fileinfo), func); + qsort (files, files_index, sizeof *files, func); } /* List all the files now in the table. */ |