From d3adef547d25f6f0d95f330f18c4a0cbe84c7646 Mon Sep 17 00:00:00 2001 From: "Chloe M." Date: Wed, 24 Jun 2026 17:00:56 +0000 Subject: [PATCH] stos: pool: Use Pool->Id instead of PoolCount Signed-off-by: Chloe M. --- paw/stos/ex/pool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paw/stos/ex/pool.c b/paw/stos/ex/pool.c index d7ca1ce..7c73f7b 100644 --- a/paw/stos/ex/pool.c +++ b/paw/stos/ex/pool.c @@ -239,7 +239,7 @@ ExPoolInit(MEMORY_POOL *Pool) } } - DTRACE("brought up %d levels for pool #%d : ok\n", LEVEL_COUNT, PoolCount); + DTRACE("brought up %d levels for pool #%d : ok\n", LEVEL_COUNT, Pool->Id); ++PoolCount; return STATUS_SUCCESS; }