Skip to content

Commit c705a94

Browse files
authored
style: add missing space
PR-URL: #7173 Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent ceac1d7 commit c705a94

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/complex/float64/base/scale/benchmark/c/native

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/complex/float64/base/scale/benchmark/c/native/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ static double benchmark( void ) {
105105
for ( i = 0; i < ITERATIONS; i++ ) {
106106
re = ( 1000.0*rand_double() ) - 500.0;
107107
im = ( 1000.0*rand_double() ) - 500.0;
108-
z1 =stdlib_complex128( re, im );
108+
z1 = stdlib_complex128( re, im );
109109

110110
z2 = stdlib_base_complex128_scale( 5.0, z1 );
111111
stdlib_complex128_reim( z2, &re, &im );

0 commit comments

Comments
 (0)