summaryrefslogtreecommitdiff
path: root/include/glob.h
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2006-05-22 05:10:17 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2006-05-22 05:10:17 +0000
commitde7ac8d19c04d6a3255172cfddff3607f6b43d46 (patch)
treeb68ef5530ffd3869a0b621d66ed95667c83bd063 /include/glob.h
parentba87bfdcd4598d50121b9f186385ff753ae233ad (diff)
downloadsrc-test-de7ac8d19c04d6a3255172cfddff3607f6b43d46.tar.gz
src-test-de7ac8d19c04d6a3255172cfddff3607f6b43d46.zip
Use size_t for gl_pathc as asked in the libc's Makefile:
# If you bump SHLIB_MAJOR, see standards/55112. PR: 55112 Reviewed by: ume
Notes
Notes: svn path=/head/; revision=158808
Diffstat (limited to 'include/glob.h')
-rw-r--r--include/glob.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/glob.h b/include/glob.h
index 694ac40589af1..0cfa2df0d8ae1 100644
--- a/include/glob.h
+++ b/include/glob.h
@@ -44,7 +44,7 @@
struct stat;
typedef struct {
- int gl_pathc; /* Count of total paths so far. */
+ size_t 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. */
int gl_flags; /* Copy of flags parameter to glob. */