diff options
author | Daniel Colascione <dancol@dancol.org> | 2014-04-03 00:14:02 -0700 |
---|---|---|
committer | Daniel Colascione <dancol@dancol.org> | 2014-04-03 00:14:02 -0700 |
commit | 705cf384bec23354ad22a5c48d3430a96ef70ca1 (patch) | |
tree | 1615876bc7abad32f5e41ea34c5cd1747466798a /src/dired.c | |
parent | 3a9e7a49deea49088a773c321e52185e922748d6 (diff) | |
download | emacs-705cf384bec23354ad22a5c48d3430a96ef70ca1.tar.gz |
Clean up array size calculations
Diffstat (limited to 'src/dired.c')
-rw-r--r-- | src/dired.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dired.c b/src/dired.c index 69d0ae0429c..5d99314fde0 100644 --- a/src/dired.c +++ b/src/dired.c @@ -984,7 +984,7 @@ file_attributes (int fd, char const *name, Lisp_Object id_format) values[10] = INTEGER_TO_CONS (s.st_ino); values[11] = INTEGER_TO_CONS (s.st_dev); - return Flist (sizeof (values) / sizeof (values[0]), values); + return Flist (EARRAYSIZE (values), values); } DEFUN ("file-attributes-lessp", Ffile_attributes_lessp, Sfile_attributes_lessp, 2, 2, 0, |