From 598380416cf5bb6bd0cae45ddb3bb03c74da21bb Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Sun, 5 Apr 2020 16:55:09 +0100 Subject: [PATCH] * src/comp.c (hash_native_abi): Fix assertion. --- src/comp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comp.c b/src/comp.c index b56d0afaa3a..904869d99c9 100644 --- a/src/comp.c +++ b/src/comp.c @@ -258,7 +258,7 @@ hash_native_abi (void) hexbuf_digest (SSDATA (digest), SDATA (digest), SHA512_DIGEST_SIZE); /* Check runs once. */ - eassert (Vcomp_abi_hash); + eassert (NILP (Vcomp_abi_hash)); Vcomp_abi_hash = digest; /* If 10 characters are usually sufficient for git I guess 16 are fine for us here. */ -- 2.39.5