From ae5d44ce6283c46d1db9dac388ec6e7a59b594ef Mon Sep 17 00:00:00 2001 From: Gabriel Ferreira Date: Sat, 29 Oct 2022 09:18:53 -0300 Subject: [PATCH] core: fix system-path.cc formatting --- src/core/model/system-path.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/model/system-path.cc b/src/core/model/system-path.cc index b3a64d777..493b7e023 100644 --- a/src/core/model/system-path.cc +++ b/src/core/model/system-path.cc @@ -318,7 +318,7 @@ MakeTemporaryDirectoryName() char* path = nullptr; path = std::getenv("TMP"); - if (!path || std::strlen(path) == 0) + if (!path || std::strlen(path) == 0) { path = std::getenv("TEMP"); if (!path || std::strlen(path) == 0)