summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-12-10 04:45:05 +0000
committerRoland McGrath <roland@gnu.org>1994-12-10 04:45:05 +0000
commit8f639f262e307667676698e9098ed1661ae9299a (patch)
tree3c6a4946ef32f7e5d9f1654ca9e4ac3fee7ce487
parenta6cc895fcbde643c82f0f0ae85f29a0f0b373194 (diff)
(DIR): Use unsigned long int for `__allocation' and `__size' members.
-rw-r--r--sysdeps/mach/hurd/dirstream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/dirstream.h b/sysdeps/mach/hurd/dirstream.h
index ce749c2d98..0bcec36f0f 100644
--- a/sysdeps/mach/hurd/dirstream.h
+++ b/sysdeps/mach/hurd/dirstream.h
@@ -33,8 +33,8 @@ typedef struct
int __entry_data; /* Entry number `__data' corresponds to. */
char *__ptr; /* Current pointer into the block. */
int __entry_ptr; /* Entry number `__ptr' corresponds to. */
- unsigned int __allocation; /* Space allocated for the block. */
- unsigned int __size; /* Total valid data in the block. */
+ unsigned long int __allocation; /* Space allocated for the block. */
+ unsigned long int __size; /* Total valid data in the block. */
} DIR;
#endif /* dirstream.h */