mu: Fix "expected command" server error report

This commit is contained in:
David Edmondson 2023-09-11 11:47:42 +01:00
parent 080cf43b4a
commit a8440bb258
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ private:
if (!listp() || empty() || !cbegin()->symbolp() ||
!plistp(cbegin() + 1, cend()))
throw Error(Error::Code::Command,
"expected command, got '%s'", to_string().c_str());
"expected command, got '{}'", to_string());
}