Skip to content

Commit 0dfdd11

Browse files
Update main.c
Signed-off-by: Karan Anand <119553199+anandkaranubc@users.noreply.github.com>
1 parent 7db7935 commit 0dfdd11

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/sinf/src

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ float stdlib_base_sinf( const float x ) {
105105
if ( ix < SMALL_WORD ) {
106106
return x;
107107
}
108-
return stdlib_base_kernel_sinf( x );
108+
return stdlib_base_kernel_sinf( (double)x );
109109
}
110110
// Case: |x| ~<= 5π/4
111111
if ( ix <= FIVE_PIO4_WORD ) {

0 commit comments

Comments
 (0)