diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-02-01 06:25:08 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-02-01 06:25:08 +0000 |
commit | 013fa874733566169ecefb25458d26065190f302 (patch) | |
tree | b3cd6121029c49534ea6bf9380620760ec07a998 /source/rpc_client | |
parent | 69e94440cd89a19bbcebc49d87836153b452da47 (diff) | |
download | samba-013fa874733566169ecefb25458d26065190f302.tar.gz samba-013fa874733566169ecefb25458d26065190f302.tar.xz samba-013fa874733566169ecefb25458d26065190f302.zip |
One more signed/unsigned fix
Diffstat (limited to 'source/rpc_client')
-rw-r--r-- | source/rpc_client/cli_lsarpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/rpc_client/cli_lsarpc.c b/source/rpc_client/cli_lsarpc.c index 84b5aa725af..3c7d0855f4e 100644 --- a/source/rpc_client/cli_lsarpc.c +++ b/source/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); |