On a 32-bit host system, UBSan reports: =============================================================== UBSAN: Undefined behaviour in ./arch/sandbox/os/common.c:115:32 signed integer overflow: 83598 * 1000000000 cannot be represented in type 'long int' =============================================================== Fix this. Signed-off-by: Ahmad Fatoum <ahmad@xxxxxx> --- arch/sandbox/os/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/sandbox/os/common.c b/arch/sandbox/os/common.c index 3ad12b4a30cd..3f9cc70770f6 100644 --- a/arch/sandbox/os/common.c +++ b/arch/sandbox/os/common.c @@ -112,7 +112,7 @@ uint64_t linux_get_time(void) clock_gettime(CLOCK_MONOTONIC, &ts); - now = ts.tv_sec * 1000 * 1000 * 1000 + ts.tv_nsec; + now = ts.tv_sec * 1000ULL * 1000 * 1000 + ts.tv_nsec; return now; } -- 2.20.1 _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox