diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2020-01-17 20:45:01 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2020-01-17 20:45:01 +0000 |
commit | 706b4fc47bbc608932d3b491ae19a3b9cde9497b (patch) | |
tree | 4adf86a776049cbf7f69a1929c4babcbbef925eb /openmp/runtime/src/kmp_settings.cpp | |
parent | 7cc9cf2bf09f069cb2dd947ead05d0b54301fb71 (diff) |
Notes
Diffstat (limited to 'openmp/runtime/src/kmp_settings.cpp')
-rw-r--r-- | openmp/runtime/src/kmp_settings.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openmp/runtime/src/kmp_settings.cpp b/openmp/runtime/src/kmp_settings.cpp index 692ca26d0e42..c7dec4d218c6 100644 --- a/openmp/runtime/src/kmp_settings.cpp +++ b/openmp/runtime/src/kmp_settings.cpp @@ -1034,7 +1034,7 @@ static void __kmp_parse_nested_num_threads(const char *var, const char *env, } // The next character is ',' if (*next == ',') { - // ',' is the fisrt character + // ',' is the first character if (total == 0 || prev_comma) { total++; } @@ -4205,7 +4205,7 @@ static void __kmp_stg_parse_spin_backoff_params(const char *name, } // The next character is ',' if (*next == ',') { - // ',' is the fisrt character + // ',' is the first character if (total == 0 || prev_comma) { total++; } @@ -4304,7 +4304,7 @@ static void __kmp_stg_parse_adaptive_lock_props(const char *name, } // The next character is ',' if (*next == ',') { - // ',' is the fisrt character + // ',' is the first character if (total == 0 || prev_comma) { total++; } |