1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

libcli: Fix a signed/unsigned hickup

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2017-11-13 08:53:04 +01:00 committed by Jeremy Allison
parent fe4e24e143
commit b0e2c669e1

View File

@ -195,7 +195,7 @@ static const struct {
const char *sid_type_lookup(uint32_t sid_type) const char *sid_type_lookup(uint32_t sid_type)
{ {
int i; size_t i;
/* Look through list */ /* Look through list */
for (i=0; i < ARRAY_SIZE(sid_name_type); i++) { for (i=0; i < ARRAY_SIZE(sid_name_type); i++) {