From d43e8a42bf23088f0515514a0441f4df9ec52bd1 Mon Sep 17 00:00:00 2001 From: TheAssassin Date: Fri, 7 Aug 2020 21:18:34 +0200 Subject: [PATCH] Fix whitespace --- include/linuxdeploy/plugin/base_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linuxdeploy/plugin/base_impl.h b/include/linuxdeploy/plugin/base_impl.h index 24e8bdd..e7288a3 100644 --- a/include/linuxdeploy/plugin/base_impl.h +++ b/include/linuxdeploy/plugin/base_impl.h @@ -177,7 +177,7 @@ namespace linuxdeploy { if (firstLineFeed == buf.end() && firstCarriageReturn == buf.end()) break; - + const auto endOfLine = std::min(firstLineFeed, firstCarriageReturn); std::string line(buf.begin(), endOfLine+1);