Skip to content

Commit 40fe636

Browse files
committed
fix: use CBLAS format specifier
1 parent 386d063 commit 40fe636

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: %ld\n", n );
281+
printf( "n: %"CBLAS_IFMT"\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: %ld\n", n );
41+
printf( "n: %"CBLAS_IFMT"\n", n );
4242
}

0 commit comments

Comments
 (0)