From 7807f4a6a4cc0587ebfabb6cd0fce05045e8593f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Mon, 13 Dec 1999 22:47:25 +0100 Subject: [PATCH] Fixed typo. Rev: src/interpreter.h:1.26 --- src/interpreter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interpreter.h b/src/interpreter.h index 03778a16fb..736e39ca17 100644 --- a/src/interpreter.h +++ b/src/interpreter.h @@ -1302,7 +1302,7 @@ static int eval_instruction(unsigned char *pc) #endif /* PIKE_DEBUG */ if (runtime_options & RUNTIME_CHECK_TYPES) { struct pike_string *sval_type = get_type_of_svalue(sp-1); - if (!pike_types_le(sval_type, sp[-2].u.string) { + if (!pike_types_le(sval_type, sp[-2].u.string)) { /* get_type_from_svalue() doesn't return a fully specified type * for array, mapping and multiset, so we perform a more lenient * check for them. -- GitLab