summaryrefslogtreecommitdiff
path: root/sysdeps/mach/hurd/dirstream.h
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-06-11 23:03:07 +0000
committerRoland McGrath <roland@gnu.org>2002-06-11 23:03:07 +0000
commit522c33f6bb802f6bf7840c78a5805b6929fd3ccd (patch)
treed151499c1c4e6761e0f663f6ee0cd394d125db17 /sysdeps/mach/hurd/dirstream.h
parent7e12a9653ab31d4d9d1f6069fe775c3823770e05 (diff)
2002-06-08 Roland McGrath <roland@frob.com>
* sysdeps/mach/hurd/dirstream.h (struct __dirstream): Use size_t instead of unsigned long int for __allocation and __size members.
Diffstat (limited to 'sysdeps/mach/hurd/dirstream.h')
-rw-r--r--sysdeps/mach/hurd/dirstream.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/mach/hurd/dirstream.h b/sysdeps/mach/hurd/dirstream.h
index 1c7f534bbe..aab6b897fb 100644
--- a/sysdeps/mach/hurd/dirstream.h
+++ b/sysdeps/mach/hurd/dirstream.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993, 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1993,94,95,96,97,2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -34,8 +34,8 @@ struct __dirstream
int __entry_data; /* Entry number `__data' corresponds to. */
char *__ptr; /* Current pointer into the block. */
int __entry_ptr; /* Entry number `__ptr' corresponds to. */
- unsigned long int __allocation; /* Space allocated for the block. */
- unsigned long int __size; /* Total valid data in the block. */
+ size_t __allocation; /* Space allocated for the block. */
+ size_t __size; /* Total valid data in the block. */
__libc_lock_define (, __lock) /* Mutex lock for this structure. */
};