From 71bc6ff210b332af5cc302899087c196935628ae Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Sun, 17 Jan 2016 18:59:50 -0500 Subject: [PATCH] arogue5: fix a typo that broke compilation with GCC 5. "msg" had been used instead of "msgw". I'm not sure why neither GCC 4 nor MSVC caught this. --- arogue5/things.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arogue5/things.c b/arogue5/things.c index 5f861bc..a8abe19 100644 --- a/arogue5/things.c +++ b/arogue5/things.c @@ -701,7 +701,7 @@ int thing_type; } otherwise: debug("Picked a bad kind of object"); - wait_for(msg,' '); + wait_for(msgw,' '); } return item; }