diff options
author | Christopher Faylor <me@cgf.cx> | 2002-09-30 03:01:17 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-09-30 03:01:17 +0000 |
commit | 0fa64fa3a7c09bd53be91f5c10e01fff8bdf7242 (patch) | |
tree | 32dfd48a8f0e5d37c7f15fa9f58d100f64b511d6 /winsup/utils/mkgroup.c | |
parent | 9d1e72a175495da5e6fb65582909169fd4b8a4a3 (diff) | |
download | cygnal-0fa64fa3a7c09bd53be91f5c10e01fff8bdf7242.tar.gz cygnal-0fa64fa3a7c09bd53be91f5c10e01fff8bdf7242.tar.bz2 cygnal-0fa64fa3a7c09bd53be91f5c10e01fff8bdf7242.zip |
* cygpath.cc (close_arg): Remove unused static.
* mkgroup.c (enum_local_users): Avoid compiler warning.
(enum_users): Ditto.
* mkpasswd.c: Ditto throughout.
* ssp.c: Ditto throughout.
Diffstat (limited to 'winsup/utils/mkgroup.c')
-rw-r--r-- | winsup/utils/mkgroup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/utils/mkgroup.c b/winsup/utils/mkgroup.c index 73a5cb403..d37889360 100644 --- a/winsup/utils/mkgroup.c +++ b/winsup/utils/mkgroup.c @@ -140,7 +140,7 @@ enum_local_users (LPWSTR groupname) MAX_PREFERRED_LENGTH, &entries, &total, &reshdl)) { - int i, first = 1; + unsigned i, first = 1; for (i = 0; i < entries; ++i) if (buf1[i].lgrmi1_sidusage == SidTypeUser) @@ -259,7 +259,7 @@ enum_users (LPWSTR servername, LPWSTR groupname) MAX_PREFERRED_LENGTH, &entries, &total, &reshdl)) { - int i, first = 1; + unsigned i, first = 1; for (i = 0; i < entries; ++i) { |