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

lib:cmdline: Align integer types

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>

Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date(master): Thu May  6 13:29:28 UTC 2021 on sn-devel-184
This commit is contained in:
Andreas Schneider 2021-05-06 12:01:05 +02:00 committed by Andreas Schneider
parent e8780be8a4
commit 249b9650a2

View File

@ -117,7 +117,8 @@ void samba_cmdline_burn(int argc, char *argv[])
bool found = false;
bool is_user = false;
char *p = NULL;
int i, ulen = 0;
int i;
size_t ulen = 0;
for (i = 0; i < argc; i++) {
p = argv[i];