Skip to content

Commit a7dd0cf

Browse files
committed
style: fix spacing
1 parent d3c6d35 commit a7dd0cf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/blas/base/cscal/src/cscal_cblas.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
*/
3232
void API_SUFFIX(c_cscal)( const CBLAS_INT N, const stdlib_complex64_t ca, void *CX, const CBLAS_INT strideX ) {
3333
CBLAS_INT sx = strideX;
34-
if( sx < 0 ) {
34+
if ( sx < 0 ) {
3535
sx = -sx;
3636
}
3737
API_SUFFIX(cblas_cscal)( N, ca, CX, sx );
@@ -51,7 +51,7 @@ void API_SUFFIX(c_cscal_ndarray)( const CBLAS_INT N, const stdlib_complex64_t ca
5151
CBLAS_INT sx = strideX;
5252

5353
cx += stdlib_strided_min_view_buffer_index( N, strideX, offsetX );
54-
if( sx < 0 ) {
54+
if ( sx < 0 ) {
5555
sx = -sx;
5656
}
5757
API_SUFFIX(cblas_cscal)( N, ca, (void *)cx, sx );

lib/node_modules/@stdlib/blas/base/cscal/src/cscal_f.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
*/
3333
void API_SUFFIX(c_cscal)( const CBLAS_INT N, const stdlib_complex64_t ca, void *CX, const CBLAS_INT strideX ) {
3434
CBLAS_INT sx = strideX;
35-
if( sx < 0 ) {
35+
if ( sx < 0 ) {
3636
sx = -sx;
3737
}
3838
cscal( &N, &ca, CX, &sx );
@@ -52,7 +52,7 @@ void API_SUFFIX(c_cscal_ndarray)( const CBLAS_INT N, const stdlib_complex64_t ca
5252
CBLAS_INT sx = strideX;
5353

5454
cx += stdlib_strided_min_view_buffer_index( N, strideX, offsetX );
55-
if( sx < 0 ) {
55+
if ( sx < 0 ) {
5656
sx = -sx;
5757
}
5858
cscal( &N, &ca, (void *)cx, &sx );

0 commit comments

Comments
 (0)