1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-29 02:50:28 +03:00

torture: Align integer types

finfo.stream_info.out.num_streams is declared as "unsigned int"

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2022-02-07 15:19:35 +01:00 committed by Jeremy Allison
parent b066dba462
commit c8eb75cca5

View File

@ -155,13 +155,13 @@ static bool check_stream(struct torture_context *tctx,
static bool check_stream_list(struct smb2_tree *tree,
struct torture_context *tctx,
const char *fname,
int num_exp,
unsigned int num_exp,
const char **exp,
struct smb2_handle h)
{
union smb_fileinfo finfo;
NTSTATUS status;
int i;
unsigned int i;
TALLOC_CTX *tmp_ctx = talloc_new(tctx);
char **exp_sort;
struct stream_struct *stream_sort;