comparison arogue5/things.c @ 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 c49f7927b0fa
children 56e748983fa8
comparison
equal deleted inserted replaced
209:4438569c1b02 210:c4f2e1bda8b0
699 otherwise: 699 otherwise:
700 cur->o_ac = 0; 700 cur->o_ac = 0;
701 } 701 }
702 otherwise: 702 otherwise:
703 debug("Picked a bad kind of object"); 703 debug("Picked a bad kind of object");
704 wait_for(msg,' '); 704 wait_for(msgw,' ');
705 } 705 }
706 return item; 706 return item;
707 } 707 }
708 708
709 /* 709 /*