Skip to content

Commit d4e8c2d

Browse files
committed
Fix fmt::format call not being updated for fmt 10
1 parent 925921d commit d4e8c2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gframe/utils_gui.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ void GUIUtils::ShowErrorWindow(epro::stringview context, epro::stringview messag
370370
#elif EDOPRO_LINUX
371371
const auto* context_cstr = context.data();
372372
const auto* message_cstr = message.data();
373-
const auto xmessage = fmt::format("{}\n{}", context, message);
373+
const auto xmessage = epro::format("{}\n{}", context, message);
374374
const auto xmessage_cstr = xmessage.data();
375375
auto pid = vfork();
376376
if(pid == 0) {

0 commit comments

Comments
 (0)