Fix help message

This commit is contained in:
Petar Kapriš 2025-10-24 08:28:52 +02:00
parent 6ef8002f08
commit 39ad228c03

View file

@ -10,7 +10,9 @@
#define DEFAULT_THREADS 4
#define MAX_THREADS 32
#define STR(x) #x
// Stringizing requires extra step for the constants to get replaced before stringizing
#define _STR(x) #x
#define STR(x) _STR(x)