From 89c9cec0bbaeb08832734fb291636149340a69cd Mon Sep 17 00:00:00 2001 From: Jeff Lucovsky Date: Fri, 13 Dec 2024 10:11:27 -0500 Subject: [PATCH] general/typo: Fix typo in stacksize msg --- src/runmodes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runmodes.c b/src/runmodes.c index b326a96e3a67..006199bb94c6 100644 --- a/src/runmodes.c +++ b/src/runmodes.c @@ -967,7 +967,7 @@ void RunModeInitializeThreadSettings(void) size_t size; if (pthread_attr_getstacksize(&attr, &size) == 0 && size < 512 * 1024) { threading_set_stack_size = 512 * 1024; - SCLogNotice("thread stack size of %" PRIuMAX " to too small: setting to 512k", + SCLogNotice("thread stack size of %" PRIuMAX " too small: setting to 512k", (uintmax_t)size); } }