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.
This commit is contained in:
John "Elwin" Edwards 2016-01-17 18:59:50 -05:00
parent e1d228b946
commit 71bc6ff210

View file

@ -701,7 +701,7 @@ int thing_type;
} }
otherwise: otherwise:
debug("Picked a bad kind of object"); debug("Picked a bad kind of object");
wait_for(msg,' '); wait_for(msgw,' ');
} }
return item; return item;
} }