summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-02-01 06:25:08 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-02-01 06:25:08 +0000
commitdf3acbadf8b24bddd2ed6b6a85cc0568b23d1c77 (patch)
tree721bf5e157e996cfd0bfba485d23aa19b6cece0f
parent95a604f5df751a19fa9190f60f6b3c4dc7cd83fe (diff)
downloadsamba-df3acbadf8b24bddd2ed6b6a85cc0568b23d1c77.tar.gz
samba-df3acbadf8b24bddd2ed6b6a85cc0568b23d1c77.tar.bz2
samba-df3acbadf8b24bddd2ed6b6a85cc0568b23d1c77.zip
One more signed/unsigned fix
(This used to be commit 013fa874733566169ecefb25458d26065190f302)
-rw-r--r--source3/rpc_client/cli_lsarpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_client/cli_lsarpc.c b/source3/rpc_client/cli_lsarpc.c
index 84b5aa725a..3c7d0855f4 100644
--- a/source3/rpc_client/cli_lsarpc.c
+++ b/source3/rpc_client/cli_lsarpc.c
@@ -1163,7 +1163,7 @@ NTSTATUS cli_lsa_enum_account_rights(struct cli_state *cli, TALLOC_CTX *mem_ctx,
LSA_Q_ENUM_ACCT_RIGHTS q;
LSA_R_ENUM_ACCT_RIGHTS r;
NTSTATUS result;
- int i;
+ unsigned int i;
ZERO_STRUCT(q);
ZERO_STRUCT(r);