Skip to content

Commit 76c0344

Browse files
committed
chore: wrong placement of pointers
1 parent 028411c commit 76c0344

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ stdlib_complex128_t stdlib_base_cexp( const stdlib_complex128_t z ) {
7373
if ( im == 0.0 ) {
7474
re = e;
7575
} else {
76-
stdlib_base_sincos( im, &re, &im );
76+
stdlib_base_sincos( im, &im, &re );
7777
re *= e;
7878
im *= e;
7979
}

0 commit comments

Comments
 (0)