changeset 210:c4f2e1bda8b0

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.
author John "Elwin" Edwards
date Sun, 17 Jan 2016 18:59:50 -0500
parents 4438569c1b02
children 382ff498acdd
files arogue5/things.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/arogue5/things.c	Fri Nov 27 08:59:24 2015 -0500
+++ b/arogue5/things.c	Sun Jan 17 18:59:50 2016 -0500
@@ -701,7 +701,7 @@
 	    }
 	otherwise:
 	    debug("Picked a bad kind of object");
-	    wait_for(msg,' ');
+	    wait_for(msgw,' ');
     }
     return item;
 }