diff options
author | Bob Ham <u9rah@dcs.shef.ac.uk> | 2012-06-30 23:20:31 -0300 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-06-30 23:20:31 -0300 |
commit | a5f023c7e7e58583dedfd9a172efe9ef02429048 (patch) | |
tree | 318c99e854f850bb92065b24c561e4354fb5b88c /libshouldbeinlibc/ugids-verify-auth.c | |
parent | 77f925eead8969194f2b251f081cf1cbfa4f5d39 (diff) |
Address gcc warnings
* exec-reauth.c (exec_reauth): Change type of temp var i to
unsigned int to address gcc warning.
* idvec-impgids.c (idvec_merge_implied_gids) Change type of
temp var i to unsigned int to address gcc warning.
* idvec-impgids.c (idvec_merge_implied_gids): Change type of
temp var i to unsigned int to address gcc warning.
* idvec-rep.c (idvec_rep): Change type of temp var i to unsigned
int to address gcc warning.
* idvec-verify (idvec_verify): Change type of temp var i to
unsigned int to address gcc warning.
* idvec.c (idvec_merge_ids, idvec_remove): Change type of temp
var i to unsigned int to address gcc warning.
* portxlate.c (port_name_xlator_create, port_name_xlator_free):
Change type of temp var i to unsigned int to address gcc warning.
* timefmt.c (fmt_seconds): Cast width to int in test to modify
frac_places to address gcc warning.
* (ugids_verify_make_auth): Change type of temp var i to unsigned
int to address gcc warning.
Diffstat (limited to 'libshouldbeinlibc/ugids-verify-auth.c')
-rw-r--r-- | libshouldbeinlibc/ugids-verify-auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libshouldbeinlibc/ugids-verify-auth.c b/libshouldbeinlibc/ugids-verify-auth.c index 91fa06e9..28e3bdab 100644 --- a/libshouldbeinlibc/ugids-verify-auth.c +++ b/libshouldbeinlibc/ugids-verify-auth.c @@ -173,7 +173,7 @@ ugids_verify_make_auth (const struct ugids *ugids, if (verify_fn) /* Clean up any left over state. */ { - int i; + unsigned int i; /* Get rid of auth ports. */ for (i = 0; i < svma_state.num_auths; i++) |