Skip to content

Commit 17412ef

Browse files
authored
style: add missing parentheses
Signed-off-by: Athan <[email protected]>
1 parent 8f3a273 commit 17412ef

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dmeanvarpn/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dmeanvarpn/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* @param strideOut Out stride length
4343
*/
4444
void API_SUFFIX(stdlib_strided_dmeanvarpn)( const CBLAS_INT N, const double correction, const double *X, const CBLAS_INT strideX, double *Out, const CBLAS_INT strideOut ) {
45-
const CBLAS_INT oo = strideOut >= 0 ? 0 : -strideOut;
45+
const CBLAS_INT oo = ( strideOut >= 0 ) ? 0 : -strideOut;
4646
const CBLAS_INT ox = stdlib_strided_stride2offset( N, strideX );
4747
API_SUFFIX(stdlib_strided_dmeanvarpn_ndarray)( N, correction, X, strideX, ox, Out, strideOut, oo );
4848
return;

0 commit comments

Comments
 (0)