From 1467ab4f93394e0816f3045f24d7ee1376e64916 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Thu, 11 May 2023 20:56:12 -0500 Subject: [PATCH] Copy paste error. --- src/core/inttypes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/inttypes.c b/src/core/inttypes.c index aa53293c..7073d9aa 100644 --- a/src/core/inttypes.c +++ b/src/core/inttypes.c @@ -521,7 +521,7 @@ OPMETHOD(int64_t, s64, mul, *) DIVMETHOD_SIGNED(int64_t, s64, div, /) DIVMETHOD_SIGNED(int64_t, s64, rem, %) DIVMETHODINVERT_SIGNED(int64_t, s64, divi, /) -DIVMETHODINVERT_SIGNED(int64_t, s64, remi, /) +DIVMETHODINVERT_SIGNED(int64_t, s64, remi, %) OPMETHOD(int64_t, s64, and, &) OPMETHOD(int64_t, s64, or, |) OPMETHOD(int64_t, s64, xor, ^)