From 8223127e18030e663830e60b04c61f8d8f737f2d Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Mon, 16 Aug 2021 13:10:53 -0700 Subject: [PATCH] src/sage/symbolic/ginac/utils.h: Fixup --- src/sage/symbolic/ginac/utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sage/symbolic/ginac/utils.h b/src/sage/symbolic/ginac/utils.h index e33ad23dade..7728a4b2bee 100644 --- a/src/sage/symbolic/ginac/utils.h +++ b/src/sage/symbolic/ginac/utils.h @@ -63,7 +63,7 @@ inline int compare_pointers(const T * a, const T * b) /** Truncated multiplication with golden ratio, for computing hash values. */ inline unsigned golden_ratio_hash(intptr_t n) { - uint64_t l = n * UINT64_C(0x4f1bbcddUL); + uint64_t l = n * UINT64_C(0x4f1bbcdd); return (unsigned)l; }