# HG changeset patch # User Eli Zaretskii # Date 1219864300 0 # Node ID 0583dab50a765461a331850daf48ef6bab1cea92 # Parent 4b3585c1b69a685390d919c19594f7a0cfa00a4e (Ffile_attributes): Fix comment in last change. diff -r 4b3585c1b69a -r 0583dab50a76 src/dired.c --- 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;