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

winbind: Align integer types

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2020-11-21 13:02:28 +01:00 committed by Jeremy Allison
parent fce49f4ac2
commit 5a0baf4925

View File

@ -183,7 +183,7 @@ static uint32_t get_dsgetdc_flags(uint32_t wbc_flags)
};
uint32_t ds_flags = 0;
int i = 0 ;
size_t i = 0;
for (i=0; i<ARRAY_SIZE(lookup_dc_flags); i++) {
if (wbc_flags & lookup_dc_flags[i].wbc_dc_flag) {