Skip to content

Commit b74c155

Browse files
authored
fix: declare array type
Signed-off-by: Athan <[email protected]>
1 parent 0b90a2b commit b74c155

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/scumax/examples/c

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/scumax/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
int main( void ) {
2525
// Create strided arrays:
26-
const x[] = { 1.0f, 2.0f, -3.0f, 4.0f, -5.0f, 6.0f, 7.0f, 8.0f };
26+
const float x[] = { 1.0f, 2.0f, -3.0f, 4.0f, -5.0f, 6.0f, 7.0f, 8.0f };
2727
float y[] = { 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 };
2828

2929
// Specify the number of elements:

0 commit comments

Comments
 (0)