From 44f36403446ac08c1b2193844874727e12b2e028 Mon Sep 17 00:00:00 2001 From: lethosor Date: Sat, 2 Nov 2019 21:46:10 -0400 Subject: [PATCH] tailor: add another missing c_str() call --- plugins/tailor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tailor.cpp b/plugins/tailor.cpp index a9dc14750..6ac308258 100644 --- a/plugins/tailor.cpp +++ b/plugins/tailor.cpp @@ -398,7 +398,7 @@ void do_scan(color_ostream& out) out.print("Added order #%d for %d %s %s (sized for %s)\n", order->id, 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(), world->raws.creatures.all[order->hist_figure_id]->name[1].c_str() );