From: Patrick Donnelly Date: Thu, 15 May 2025 17:29:55 +0000 (-0400) Subject: test: fix compiler error X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=1f9013bfab4b3c1779c3f57d18c445a071f833e8;p=ceph-ci.git test: fix compiler error Signed-off-by: Patrick Donnelly --- diff --git a/src/test/crypto.cc b/src/test/crypto.cc index bb286de3054..1fc90bf374a 100644 --- a/src/test/crypto.cc +++ b/src/test/crypto.cc @@ -355,7 +355,7 @@ static void dump_buf(string title, const unsigned char *buf, int len) if (i != 0 && i % 16 == 0) { cout << std::endl; } - std::cout << std::format("{:02x} ", buf[i]); + std::cout << fmt::format("{:02x} ", buf[i]); } std::cout << std::endl << std::endl; }