Merge pull request #2552 from dme/devel/misc

mu: Fix "expected command" server error report
This commit is contained in:
Dirk-Jan C. Binnema
2023-09-12 22:28:30 +03:00
committed by GitHub

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());
}