aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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. */)
1000 { 1000 {
1001 /* To allow inode numbers beyond 32 bits, separate into 2 24-bit 1001 /* To allow inode numbers beyond 32 bits, separate into 2 24-bit
1002 high parts and a 16-bit bottom part. 1002 high parts and a 16-bit bottom part.
1003 The code on the next line avoids a compiler warning on some 1003 The code on the next line avoids a compiler warning on
1004 systems (bug#766). */ 1004 systems where st_ino is 32 bit wide. (bug#766). */
1005 EMACS_INT high_ino = s.st_ino >> 31 >> 1; 1005 EMACS_INT high_ino = s.st_ino >> 31 >> 1;
1006 EMACS_INT low_ino = s.st_ino & 0xffffffff; 1006 EMACS_INT low_ino = s.st_ino & 0xffffffff;
1007 1007