From abecd6633e2b5c191080b6838c4c7658af3fddd8 Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Tue, 5 Sep 2023 12:19:53 +0200 Subject: [PATCH] ch: Use proper format directive for @i in virCHProcessSetupIOThreads() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The @i variable inside of virCHProcessSetupIOThreads() is a typical loop counter - it's declared as size_t. But when passed to VIR_DEBUG an invalid format directive is used (%ld). Fix that. Signed-off-by: Michal Privoznik Reviewed-by: Ján Tomko --- src/ch/ch_process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch/ch_process.c b/src/ch/ch_process.c index 44c5b0611e..6d3a9612bd 100644 --- a/src/ch/ch_process.c +++ b/src/ch/ch_process.c @@ -332,7 +332,7 @@ virCHProcessSetupIOThreads(virDomainObj *vm) return -1; for (i = 0; i < niothreads; i++) { - VIR_DEBUG("IOThread index = %ld , tid = %d", i, iothreads[i]->iothread_id); + VIR_DEBUG("IOThread index = %zu , tid = %d", i, iothreads[i]->iothread_id); if (virCHProcessSetupIOThread(vm, iothreads[i]) < 0) return -1; }