From 8c58df695f06ffdb7bbb5fa412d6a4649c0851a3 Mon Sep 17 00:00:00 2001 From: ache Date: Mon, 22 May 2006 06:53:35 +0000 Subject: [PATCH] Reflect int -> size_t changes in glob.h --- lib/libc/gen/glob.3 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/libc/gen/glob.3 b/lib/libc/gen/glob.3 index a9f0458c4592..79bbd3cf1348 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;