1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +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:
Volker Lendecke 2019-08-09 08:02:41 +02:00 committed by Ralph Boehme
parent 64f182412a
commit 76bf8a1ac4

View File

@ -275,7 +275,7 @@ char *dalloc_dump(DALLOC_CTX *dd, int nestinglevel)
}
logstring = talloc_asprintf(dd,
"%s%s(#%lu): {\n",
"%s%s(#%zu): {\n",
tab_string1,
talloc_get_name(dd),
dalloc_size(dd));