mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
mdssvc: Fix the clang build
clang complains about "%lu" not to match size_t on 32-bit FreeBSD Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org> Autobuild-User(master): Ralph Böhme <slow@samba.org> Autobuild-Date(master): Fri Aug 9 07:34:05 UTC 2019 on sn-devel-184
This commit is contained in:
parent
64f182412a
commit
76bf8a1ac4
@ -275,7 +275,7 @@ char *dalloc_dump(DALLOC_CTX *dd, int nestinglevel)
|
|||||||
}
|
}
|
||||||
|
|
||||||
logstring = talloc_asprintf(dd,
|
logstring = talloc_asprintf(dd,
|
||||||
"%s%s(#%lu): {\n",
|
"%s%s(#%zu): {\n",
|
||||||
tab_string1,
|
tab_string1,
|
||||||
talloc_get_name(dd),
|
talloc_get_name(dd),
|
||||||
dalloc_size(dd));
|
dalloc_size(dd));
|
||||||
|
Loading…
Reference in New Issue
Block a user