diff options
author | ache <ache@FreeBSD.org> | 2006-05-22 06:53:35 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2006-05-22 06:53:35 +0000 |
commit | 8c58df695f06ffdb7bbb5fa412d6a4649c0851a3 (patch) | |
tree | 4aad0eef2b1d415e937e200e7fb943ada4da2641 /lib/libc | |
parent | a069364a5cf134a41fde313da1422969c21bec21 (diff) | |
download | FreeBSD-src-8c58df695f06ffdb7bbb5fa412d6a4649c0851a3.zip FreeBSD-src-8c58df695f06ffdb7bbb5fa412d6a4649c0851a3.tar.gz |
Reflect int -> size_t changes in glob.h
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/glob.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/glob.3 b/lib/libc/gen/glob.3 index a9f0458..79bbd3c 100644 --- a/lib/libc/gen/glob.3 +++ b/lib/libc/gen/glob.3 @@ -63,9 +63,9 @@ defines the structure type which contains at least the following fields: .Bd -literal typedef struct { - int gl_pathc; /* count of total paths so far */ - int gl_matchc; /* count of paths matching pattern */ - int gl_offs; /* reserved at beginning of gl_pathv */ + size_t gl_pathc; /* count of total paths so far */ + size_t gl_matchc; /* count of paths matching pattern */ + size_t gl_offs; /* reserved at beginning of gl_pathv */ int gl_flags; /* returned flags */ char **gl_pathv; /* list of paths matching pattern */ } glob_t; |