Skip to content

Commit

Permalink
general/typo: Fix typo in stacksize msg
Browse files Browse the repository at this point in the history
  • Loading branch information
jlucovsky committed Dec 13, 2024
1 parent d11e8a8 commit 89c9cec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runmodes.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit 89c9cec

Please sign in to comment.