From 5fb49130cd8285d4a61c13f2ec86b706ef092bf7 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Fri, 19 Jan 2024 14:44:35 +0100 Subject: [PATCH] bit of formatting --- pdns/lua-record.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/lua-record.cc b/pdns/lua-record.cc index fb69c2763d..f23e9a4ee4 100644 --- a/pdns/lua-record.cc +++ b/pdns/lua-record.cc @@ -771,7 +771,7 @@ static void setupLuaRecords(LuaContext& lua) // NOLINT(readability-function-cogn if(input.length() >= 8) { auto last8 = input.substr(input.length()-8); if(sscanf(last8.c_str(), "%02x%02x%02x%02x", &x1, &x2, &x3, &x4)==4) { - return std::to_string(x1)+"."+std::to_string(x2)+"."+std::to_string(x3)+"."+std::to_string(x4); + return std::to_string(x1) + "." + std::to_string(x2) + "." + std::to_string(x3) + "." + std::to_string(x4); } } } -- 2.47.2