Skip to content

Commit c83baa6

Browse files
chore: pointer conversion
1 parent 2dc8d29 commit c83baa6

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ double stdlib_base_atanh( const double x ) {
119119
}
120120

121121
ax = x;
122-
stdlib_base_float64_set_high_word( ahx, ax );
122+
stdlib_base_float64_set_high_word( ahx, &ax );
123123

124124
if( ahx < HIGH_BIASED_EXP_NEG_1 ) {
125125
t = ax + ax;

0 commit comments

Comments
 (0)