We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f7cdfd commit 8a31ad6Copy full SHA for 8a31ad6
src/jloptions.c
@@ -656,7 +656,7 @@ JL_DLLEXPORT void jl_parse_opts(int *argcp, char ***argvp)
656
nthreadsi = strtol(&endptr[1], &endptri, 10);
657
// Allow 0 for interactive
658
if (errno != 0 || endptri == &endptr[1] || *endptri != 0 || nthreadsi < 0 || nthreadsi >= INT16_MAX)
659
- jl_errorf("julia: -t,--threads=<n>,<m>; m must be an integer ≥ 0");
+ jl_errorf("julia: -t,--threads=<n>,<m>; m must be an integer >= 0");
660
if (nthreadsi == 0)
661
jl_options.nthreadpools = 1;
662
}
0 commit comments