summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/eurephia_init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/eurephia_init.c b/utils/eurephia_init.c
index ebcf9c6..c342617 100644
--- a/utils/eurephia_init.c
+++ b/utils/eurephia_init.c
@@ -69,7 +69,7 @@ void print_help(char *fprg) {
" -l | --log <filename> : Log file for debugging\n"
" -L | --log-level <log level> : Sets the log level\n"
" -N | --hash-threshold-min <ms> : Benchmarking parameter, see below. Default 95ms\n"
- " -N | --hash-threshold-max <ms> : Benchmarking parameter, see below. Default 200ms\n"
+ " -M | --hash-threshold-max <ms> : Benchmarking parameter, see below. Default 200ms\n"
" -D | --database-driver <path> : Full path to the database driver\n"
" -d | --database-args <args> : Required database arguments for the driver\n\n");
@@ -438,7 +438,7 @@ int main(int argc, char **argv) {
{"--log", "-l", 1},
{"--log-level", "-L", 1},
{"--hash-threshold-min", "-N", 1},
- {"--hash-threshold-max", "-X", 1},
+ {"--hash-threshold-max", "-M", 1},
{"--database-driver", "-D", 1},
{"--database-args", "-d", 1},
{NULL, NULL, 0}
@@ -475,7 +475,7 @@ int main(int argc, char **argv) {
hash_thr_min = atoi_nullsafe(optargs[0]);
break;
- case 'X':
+ case 'M':
hash_thr_max = atoi_nullsafe(optargs[0]);
break;