From: Eric S. Raymond Date: Wed, 14 Jun 2017 17:35:06 +0000 (-0400) Subject: Eliminate magic return value. X-Git-Tag: 1.1~320 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=6c6498b797c84653c04ef0a9fc31d52af159fdf2 Eliminate magic return value. --- diff --git a/actions.c b/actions.c index 2b9973a..d0608f6 100644 --- a/actions.c +++ b/actions.c @@ -849,7 +849,7 @@ static int say(void) int wd=VOCAB(WD1,-1); if (wd == 62 || wd == 65 || wd == 71 || wd == 2025 || wd == 2034) { WD2=0; - return(2630); + return GO_LOOKUP; } RSPEAK(258); return GO_CLEAROBJ;