diff options
author | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2016-03-15 20:59:10 +0000 |
---|---|---|
committer | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2016-03-15 20:59:10 +0000 |
commit | 4240055ac8b4547439d5b8db9590619773727574 (patch) | |
tree | 0e1bac9b35f4a672526432dd8ba8f22628a47df0 /openmp/runtime/src | |
parent | 37ca462508511da5b70459dc117340c5fd9e1831 (diff) | |
download | bcm5719-llvm-4240055ac8b4547439d5b8db9590619773727574.tar.gz bcm5719-llvm-4240055ac8b4547439d5b8db9590619773727574.zip |
Fix spelling error in comment
llvm-svn: 263586
Diffstat (limited to 'openmp/runtime/src')
-rw-r--r-- | openmp/runtime/src/kmp_utility.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openmp/runtime/src/kmp_utility.c b/openmp/runtime/src/kmp_utility.c index c3fb78200b5..761fd06ac2e 100644 --- a/openmp/runtime/src/kmp_utility.c +++ b/openmp/runtime/src/kmp_utility.c @@ -114,7 +114,7 @@ __kmp_parse_frequency( // R: Frequency in Hz. if ( frequency == NULL ) { return result; }; // if - value = strtod( frequency, (char * *) & unit ); // strtod() does not like "char conts *". + value = strtod( frequency, (char * *) & unit ); // strtod() does not like "char const *". if ( 0 < value && value <= DBL_MAX ) { // Good value (not overflow, underflow, etc). if ( strcmp( unit, "MHz" ) == 0 ) { value = value * 1.0E+6; |