tailor: add another missing c_str() call

develop
lethosor 2019-11-02 21:46:10 -04:00
parent 6a00510272
commit 44f3640344
1 changed files with 1 additions and 1 deletions

@ -398,7 +398,7 @@ void do_scan(color_ostream& out)
out.print("Added order #%d for %d %s %s (sized for %s)\n", out.print("Added order #%d for %d %s %s (sized for %s)\n",
order->id, order->id,
count, count,
bitfield_to_string(order->material_category), bitfield_to_string(order->material_category).c_str(),
(count > 1) ? name_p.c_str() : name_s.c_str(), (count > 1) ? name_p.c_str() : name_s.c_str(),
world->raws.creatures.all[order->hist_figure_id]->name[1].c_str() world->raws.creatures.all[order->hist_figure_id]->name[1].c_str()
); );