Skip to content

Commit 86c575b

Browse files
committed
fix: fixes ci issues
1 parent cf606d1 commit 86c575b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/math/base/special/lucasf/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ int main( void ) {
2525
float v;
2626

2727
for ( i = 0; i < 35; i++ ) {
28-
v = stdlib_base_lucasf( i );
28+
v = stdlib_base_lucas( i );
2929
printf( "lucasf(%d) = %lf\n", i, v );
3030
}
3131
}

lib/node_modules/@stdlib/math/base/special/lucasf/src/addon.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
#include "stdlib/math/base/napi/unary.h"
2121

2222
// cppcheck-suppress shadowFunction
23-
STDLIB_MATH_BASE_NAPI_MODULE_I_F( stdlib_base_lucasf )
23+
STDLIB_MATH_BASE_NAPI_MODULE_I_F( stdlib_base_lucas )

lib/node_modules/@stdlib/math/base/special/lucasf/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include "stdlib/math/base/special/lucasf.h"
2020
#include "stdlib/constants/float32/max_safe_nth_lucas.h"
2121

22-
static const int32_t lucas_value[ 35 ] = {
22+
static const int32_t lucasf_value[ 35 ] = {
2323
2,
2424
1,
2525
3,

0 commit comments

Comments
 (0)