Skip to content

Commit 2197079

Browse files
committed
chore: code review
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown_pkg_readmes status: na - task: lint_markdown_docs status: na - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 3831168 commit 2197079

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • lib/node_modules/@stdlib/math/base/special/log10f/src

lib/node_modules/@stdlib/math/base/special/log10f/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,5 +134,5 @@ float stdlib_base_log10f( const float x ) {
134134
stdlib_base_float32_to_word( hi, &hx );
135135
stdlib_base_float32_from_word( hx & HI_MASK, &hi );
136136
lo = ( f - hi ) - hfsq + r;
137-
return ( y * LOG10_2LO ) + ( ( lo + hi ) * IVLN10LO ) + ( lo * IVLN10HI ) + ( hi * IVLN10HI ) + ( y * LOG10_2HI );
137+
return ( y*LOG10_2LO ) + ( ( lo+hi )*IVLN10LO ) + ( lo*IVLN10HI ) + ( hi*IVLN10HI ) + ( y*LOG10_2HI );
138138
}

0 commit comments

Comments
 (0)