From 4ed61a0a7574209444d542e4f6adb96be687011e Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Tue, 18 Oct 2022 14:57:11 -0500 Subject: [PATCH] fixup! refactor: remove TR_PRIsv macros (#3842) (#3992) fix: invalid format string passed to fmt::print --- utils/remote.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/remote.cc b/utils/remote.cc index 084d93812..6e0e4ade8 100644 --- a/utils/remote.cc +++ b/utils/remote.cc @@ -2136,7 +2136,7 @@ static int processResponse(char const* rpcurl, std::string_view response, Config if (config.json) { - fmt::print(response); + fmt::print("{:s}\n", response); return status; }