the error is how you declared where_to_burn
adventure requires a location type:
boolean adventure( int, location )
boolean adventure( int, location, string )
To Fix it declare where_to_burn as a location type instead of a string type:
location where_to_burn;
Edit: Damn Ninjas!