Skip to content

Commit 5422a7d

Browse files
committed
chore: update variable names to be consistent with elsewhere
--- 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: na - 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 ---
1 parent 942294c commit 5422a7d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/blas/base/ccopy/benchmark/fortran/benchmark.length.f

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ double precision function benchmark( iterations, len )
117117
! ..
118118
! External functions:
119119
interface
120-
subroutine ccopy( N, cx, strideX, cy, strideY )
121-
complex :: cx(*), cy(*)
120+
subroutine ccopy( N, x, strideX, y, strideY )
121+
complex :: x(*), y(*)
122122
integer :: strideX, strideY, N
123123
end subroutine ccopy
124124
end interface
@@ -207,4 +207,4 @@ subroutine main()
207207
end do
208208
call print_summary( count, count )
209209
end subroutine main
210-
end program bench
210+
end program bench

0 commit comments

Comments
 (0)