From: Bastian Germann Date: Wed, 31 Jul 2024 17:26:21 +0000 (+0200) Subject: gbx_number: align type with builtin check signature X-Git-Tag: archive/raspbian/3.19.3-1+rpi1^2~3 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d5d5f12b8798dc0c988d44f4e7ac47b94d336738;p=gambas3.git gbx_number: align type with builtin check signature Gbp-Pq: Name align-type-with-builtin-check-signature.patch --- diff --git a/main/gbx/gbx_number.c b/main/gbx/gbx_number.c index 38fe1a44..c79ae374 100644 --- a/main/gbx/gbx_number.c +++ b/main/gbx/gbx_number.c @@ -83,9 +83,9 @@ static int read_integer(int base, bool minus, int64_t *result, bool local, bool 12, 12, 12, 12, 12, 12 }; - uint64_t nbr; + long unsigned int nbr; #if DO_NOT_CHECK_OVERFLOW - uint64_t nbr2; + long unsigned int nbr2; #endif int d, n, c, nmax; const char *thsep;