Source: gambas3
Version: 3.19.1-1
Severity: serious
Tags: ftbfs
https://buildd.debian.org/status/fetch.php?pkg=gambas3&arch=armhf&ver=3.19.1-1%2Bb2&stamp=1721959820&raw=0
...
gbx_number.c: In function ‘read_integer’:
gbx_number.c:149:71: error: passing argument 3 of ‘__builtin_umull_overflow’
from incompatible pointer type [-Wincompatible-pointer-types]
149 | if (__builtin_umull_overflow(nbr, 10,
&nbr))
|
^~~~
| |
|
uint64_t * {aka long long unsigned int *}
gbx_number.c:149:71: note: expected ‘long unsigned int *’ but argument is of
type ‘uint64_t *’ {aka ‘long long unsigned int *’}
gbx_number.c:151:80: error: passing argument 3 of ‘__builtin_uaddl_overflow’
from incompatible pointer type [-Wincompatible-pointer-types]
151 | if (__builtin_uaddl_overflow(nbr,
(uint64_t)d, &nbr))
|
^~~~
|
|
|
uint64_t * {aka long long unsigned int *}
gbx_number.c:151:80: note: expected ‘long unsigned int *’ but argument is of
type ‘uint64_t *’ {aka ‘long long unsigned int *’}
gbx_number.c:195:73: error: passing argument 3 of ‘__builtin_umull_overflow’
from incompatible pointer type [-Wincompatible-pointer-types]
195 | if (__builtin_umull_overflow(nbr, base,
&nbr))
|
^~~~
|
|
|
uint64_t * {aka long long unsigned int *}
gbx_number.c:195:73: note: expected ‘long unsigned int *’ but argument is of
type ‘uint64_t *’ {aka ‘long long unsigned int *’}
gbx_number.c:197:80: error: passing argument 3 of ‘__builtin_uaddl_overflow’
from incompatible pointer type [-Wincompatible-pointer-types]
197 | if (__builtin_uaddl_overflow(nbr,
(uint64_t)d, &nbr))
|
^~~~
|
|
|
uint64_t * {aka long long unsigned int *}
gbx_number.c:197:80: note: expected ‘long unsigned int *’ but argument is of
type ‘uint64_t *’ {aka ‘long long unsigned int *’}
make[5]: *** [Makefile:1819: gbx3-gbx_number.o] Error 1