# HG changeset patch # User John "Elwin" Edwards # Date 1453075190 18000 # Node ID c4f2e1bda8b0e7bacf9da2a7cfd3c433e0e1930e # Parent 4438569c1b02579c5fc099a2fdc3e6cd7c2ae279 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. diff -r 4438569c1b02 -r c4f2e1bda8b0 arogue5/things.c --- 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; }