From b22daf080df248d2494b86f420ec0f16b4250a9a Mon Sep 17 00:00:00 2001 From: Danya Berezun Date: Wed, 4 Oct 2023 12:28:56 +0200 Subject: [PATCH] fix merge typo --- runtime/runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/runtime.c b/runtime/runtime.c index 1e1ade139..c74962d53 100644 --- a/runtime/runtime.c +++ b/runtime/runtime.c @@ -234,7 +234,7 @@ extern int LtagHash (char *s) { p++; } - if (strcmp(s, de_hash(h), 5) != 0) { failure("%s <-> %s\n", s, de_hash(h)); } + if (strncmp(s, de_hash(h), 5) != 0) { failure("%s <-> %s\n", s, de_hash(h)); } return BOX(h); }