From e30a824101dd14da0bdc760f693c7d4d2eb12982 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Sat, 20 Dec 1997 20:36:48 +0100 Subject: [PATCH] Fixed warning. Rev: src/lex.c:1.34 --- src/lex.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lex.c b/src/lex.c index f856d3d85c..e829172ebf 100644 --- a/src/lex.c +++ b/src/lex.c @@ -4,7 +4,7 @@ ||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h" -RCSID("$Id: lex.c,v 1.33 1997/12/16 22:50:05 grubba Exp $"); +RCSID("$Id: lex.c,v 1.34 1997/12/20 19:36:48 grubba Exp $"); #include "language.h" #include "array.h" #include "lex.h" @@ -1860,8 +1860,8 @@ static void low_lex(void) READBUF(isidchar(C)); push_text(buf); - if (sv = low_mapping_string_lookup(get_builtin_constants(), - sp[-1].u.string)) { + if ((sv = low_mapping_string_lookup(get_builtin_constants(), + sp[-1].u.string))) { pop_stack(); push_svalue(sv); res = 1; -- GitLab