diff options
Diffstat (limited to 'Build/source/libs/gmp/gmp-src/scanf/doscan.c')
-rw-r--r-- | Build/source/libs/gmp/gmp-src/scanf/doscan.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Build/source/libs/gmp/gmp-src/scanf/doscan.c b/Build/source/libs/gmp/gmp-src/scanf/doscan.c index 47b22706ced..8d9c1bbf2fe 100644 --- a/Build/source/libs/gmp/gmp-src/scanf/doscan.c +++ b/Build/source/libs/gmp/gmp-src/scanf/doscan.c @@ -63,7 +63,6 @@ see https://www.gnu.org/licenses/. */ #include <sys/types.h> /* for quad_t */ #endif -#include "gmp.h" #include "gmp-impl.h" @@ -402,7 +401,7 @@ gmpscan (const struct gmp_doscan_funs_t *funs, void *data, if (exp >= 0) mpf_mul_2exp (f, f, (unsigned long) exp); else - mpf_div_2exp (f, f, - (unsigned long) exp); + mpf_div_2exp (f, f, NEG_CAST (unsigned long, exp)); } } break; |