summaryrefslogtreecommitdiff
path: root/lib/replace
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2022-08-03 11:05:33 +0200
committerJeremy Allison <jra@samba.org>2022-08-04 20:44:32 +0000
commitc89ae5f0f65d727bd7084a52175089aa60dda428 (patch)
tree7fadb50c499d21fea8d22e584f373c7dae08535b /lib/replace
parent0b58dc38bb810cc2c5a516a8f4f3017d7812ee0a (diff)
downloadsamba-c89ae5f0f65d727bd7084a52175089aa60dda428.tar.gz
lib: Align an integer type
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/replace')
-rw-r--r--lib/replace/xattr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/replace/xattr.c b/lib/replace/xattr.c
index 01215f1a9f3..4869367b7da 100644
--- a/lib/replace/xattr.c
+++ b/lib/replace/xattr.c
@@ -210,7 +210,8 @@ typedef union {
static ssize_t bsd_attr_list (int type, extattr_arg arg, char *list, size_t size)
{
ssize_t list_size, total_size = 0;
- int i, t, len;
+ int i, len;
+ size_t t;
char *buf;
/* Iterate through extattr(2) namespaces */
for(t = 0; t < ARRAY_SIZE(extattr); t++) {