Skip to content

Commit 644168b

Browse files
committed
fix: use correct specifier
1 parent 88d4913 commit 644168b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/ext/base/dnannsumkbn/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ int main( void ) {
278278

279279
// Print the result:
280280
printf( "sum: %lf\n", v );
281-
printf( "n: %d\n", n );
281+
printf( "n: %ld\n", n );
282282
}
283283
```
284284

lib/node_modules/@stdlib/blas/ext/base/dnannsumkbn/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ int main( void ) {
3838

3939
// Print the result:
4040
printf( "sum: %lf\n", v );
41-
printf( "n: %d\n", n );
41+
printf( "n: %ld\n", n );
4242
}

0 commit comments

Comments
 (0)