From 6c1a7205e34f766da376311de474286ca066991c Mon Sep 17 00:00:00 2001 From: Yakov Olkhovskiy Date: Wed, 24 Aug 2022 21:47:37 +0000 Subject: [PATCH] fix style --- utils/self-extracting-executable/decompressor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/self-extracting-executable/decompressor.cpp b/utils/self-extracting-executable/decompressor.cpp index bf5be5f15cf..e687717dacd 100644 --- a/utils/self-extracting-executable/decompressor.cpp +++ b/utils/self-extracting-executable/decompressor.cpp @@ -370,7 +370,7 @@ uint32_t get_inode(const char * self) return 0; } - for (std::string line; std::getline(maps, line); ) + for (std::string line; std::getline(maps, line);) { std::stringstream ss(line); // STYLE_CHECK_ALLOW_STD_STRING_STREAM std::string addr, mode, offset, id, path;