general/typo: Fix typo in stacksize msg

pull/12282/head
Jeff Lucovsky 9 months ago
parent d11e8a8ee7
commit 89c9cec0bb

@ -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);
}
}

Loading…
Cancel
Save