Mercurial > emacs
changeset 97773:0583dab50a76
(Ffile_attributes): Fix comment in last change.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Wed, 27 Aug 2008 19:11:40 +0000 |
parents | 4b3585c1b69a |
children | cf6404e22e31 |
files | src/dired.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dired.c Wed Aug 27 19:09:36 2008 +0000 +++ b/src/dired.c Wed Aug 27 19:11:40 2008 +0000 @@ -1000,8 +1000,8 @@ { /* To allow inode numbers beyond 32 bits, separate into 2 24-bit high parts and a 16-bit bottom part. - The code on the next line avoids a compiler warning on some - systems (bug#766). */ + The code on the next line avoids a compiler warning on + systems where st_ino is 32 bit wide. (bug#766). */ EMACS_INT high_ino = s.st_ino >> 31 >> 1; EMACS_INT low_ino = s.st_ino & 0xffffffff;