Skip to content

Commit 8c23ba4

Browse files
authored
Fix: Uninitialized variable: x
Signed-off-by: MANI <[email protected]>
1 parent 113f671 commit 8c23ba4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/smeanors/benchmark/c/benchmark.length.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ static float rand_float( void ) {
9696
*/
9797
static double benchmark( int iterations, int len ) {
9898
double elapsed;
99-
float x[ len ];
99+
double x[ len ];
100100
float v;
101101
double t;
102102
int i;

0 commit comments

Comments
 (0)