summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2019-08-14 21:39:50 +0200
committerJeremy Allison <jra@samba.org>2019-08-19 23:14:38 +0000
commit6be8057317a05b247169b8a30f968d1d2c085562 (patch)
tree2db1fdd676586e274d4e9e63b458dc36b11ce414
parent28868d24576dbd437329b7a59104cb7c15ee4624 (diff)
downloadsamba-6be8057317a05b247169b8a30f968d1d2c085562.tar.gz
smbd: Align integer types
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Ralph Böhme <slow@samba.org>
-rw-r--r--source3/smbd/close.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/close.c b/source3/smbd/close.c
index 04c19cf32c0..b3fda4d9521 100644
--- a/source3/smbd/close.c
+++ b/source3/smbd/close.c
@@ -166,7 +166,7 @@ NTSTATUS delete_all_streams(connection_struct *conn,
const struct smb_filename *smb_fname)
{
struct stream_struct *stream_info = NULL;
- int i;
+ unsigned int i;
unsigned int num_streams = 0;
TALLOC_CTX *frame = talloc_stackframe();
NTSTATUS status;