From 2b725861fb4d1f657d2e62fd5a695522b2c9b7da Mon Sep 17 00:00:00 2001 From: krangelov Date: Mon, 27 Sep 2021 19:47:24 +0200 Subject: [PATCH] mark 10000000000000000000 as UL --- src/runtime/c/pgf/pgf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/c/pgf/pgf.h b/src/runtime/c/pgf/pgf.h index b8f866cd6..7c991f440 100644 --- a/src/runtime/c/pgf/pgf.h +++ b/src/runtime/c/pgf/pgf.h @@ -128,7 +128,7 @@ typedef struct { #define LINT_BASE 1000000000 #define LINT_BASE_LOG 9 #elif __WORDSIZE == 64 -#define LINT_BASE 10000000000000000000 +#define LINT_BASE 10000000000000000000UL #define LINT_BASE_LOG 19 #else #error "Platforms with the current __WORDSIZE are not supported yet"