summaryrefslogtreecommitdiff
path: root/src/dired.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2008-08-27 19:11:40 +0000
committerEli Zaretskii <eliz@gnu.org>2008-08-27 19:11:40 +0000
commit25ae5671dd212dfe3b4270cb42847122b5504058 (patch)
tree9875c9a5a5ac7a068fa71813a4adc7ae13398e53 /src/dired.c
parentf12dae2f4c1c725e7b2ccce8e39a2be628977515 (diff)
downloademacs-25ae5671dd212dfe3b4270cb42847122b5504058.tar.gz
(Ffile_attributes): Fix comment in last change.
Diffstat (limited to 'src/dired.c')
-rw-r--r--src/dired.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dired.c b/src/dired.c
index 143e9477603..0ae24f21548 100644
--- a/src/dired.c
+++ b/src/dired.c
@@ -1000,8 +1000,8 @@ which see. */)
{
/* 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;