1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-03 01:18:10 +03:00

smbd: Fix a %d/%u format string hickup

num_streams is an unsigned int

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Pavel Filipenský <pfilipensky@samba.org>
This commit is contained in:
Volker Lendecke 2024-12-04 19:19:57 +01:00
parent 7116dca925
commit 6b7ca29ffb

View File

@ -5475,8 +5475,7 @@ static NTSTATUS open_streams_for_delete(connection_struct *conn,
goto fail;
}
DEBUG(10, ("open_streams_for_delete found %d streams\n",
num_streams));
DBG_DEBUG("open_streams_for_delete found %u streams\n", num_streams);
if (num_streams == 0) {
TALLOC_FREE(frame);