From 16d64dcb0d2c96240c138670b6a060c26e3f3d12 Mon Sep 17 00:00:00 2001 From: ShabiShett07 Date: Mon, 2 Jun 2025 18:41:45 +0530 Subject: [PATCH] chore: add indentation --- 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 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: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: missing_dependencies - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- .../complex/float64/base/scale/benchmark/c/native/benchmark.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/complex/float64/base/scale/benchmark/c/native/benchmark.c b/lib/node_modules/@stdlib/complex/float64/base/scale/benchmark/c/native/benchmark.c index 9194198b3593..e8603f0a96db 100644 --- a/lib/node_modules/@stdlib/complex/float64/base/scale/benchmark/c/native/benchmark.c +++ b/lib/node_modules/@stdlib/complex/float64/base/scale/benchmark/c/native/benchmark.c @@ -105,7 +105,7 @@ static double benchmark( void ) { for ( i = 0; i < ITERATIONS; i++ ) { re = ( 1000.0*rand_double() ) - 500.0; im = ( 1000.0*rand_double() ) - 500.0; - z1 =stdlib_complex128( re, im ); + z1 = stdlib_complex128( re, im ); z2 = stdlib_base_complex128_scale( 5.0, z1 ); stdlib_complex128_reim( z2, &re, &im );