]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
lib:cmdline: Align integer types
authorAndreas Schneider <asn@samba.org>
Thu, 6 May 2021 10:01:05 +0000 (12:01 +0200)
committerAndreas Schneider <asn@cryptomilk.org>
Thu, 6 May 2021 13:29:27 +0000 (13:29 +0000)
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

lib/cmdline/cmdline.c

index b5510c86ebb38482ade7044080c2ed6424161c9c..1802a291f4c38d899ee0489d3ee351d1064438bf 100644 (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];