From: Jeff Lucovsky Date: Fri, 13 Dec 2024 15:11:27 +0000 (-0500) Subject: general/typo: Fix typo in stacksize msg X-Git-Tag: suricata-8.0.0-beta1~635 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F12282%2Fhead;p=thirdparty%2Fsuricata.git general/typo: Fix typo in stacksize msg --- diff --git a/src/runmodes.c b/src/runmodes.c index b326a96e3a..006199bb94 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); } }