Skip to content

Commit 79f7631

Browse files
authored
refactor: remove unnecessary cast
Signed-off-by: Athan <[email protected]>
1 parent 6068dd5 commit 79f7631

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/math/base/napi/ternary/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/math/base/napi/ternary/src/fif_f.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ napi_value stdlib_math_base_napi_fif_f( napi_env env, napi_callback_info info, f
9191
assert( status == napi_ok );
9292

9393
napi_value v;
94-
status = napi_create_double( env, (double)fcn( (float)x, (int32_t)y, (float)z ), &v );
94+
status = napi_create_double( env, (double)fcn( (float)x, y, (float)z ), &v );
9595
assert( status == napi_ok );
9696

9797
return v;

0 commit comments

Comments
 (0)