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

libcli: 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-14 16:31:09 +01:00 committed by Jeremy Allison
parent 38a0724fd0
commit fce49f4ac2

View File

@ -67,7 +67,7 @@ const char *smb_protocol_types_string(enum protocol_types protocol)
**/ **/
char *attrib_string(TALLOC_CTX *mem_ctx, uint32_t attrib) char *attrib_string(TALLOC_CTX *mem_ctx, uint32_t attrib)
{ {
int i, len; size_t i, len;
const struct { const struct {
char c; char c;
uint16_t attr; uint16_t attr;