From de7ac8d19c04d6a3255172cfddff3607f6b43d46 Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Mon, 22 May 2006 05:10:17 +0000 Subject: [PATCH] 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 --- include/glob.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/glob.h b/include/glob.h index 694ac40589af..0cfa2df0d8ae 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. */