From d192372c7e91cfc40cc8feba9007825b01ecbea2 Mon Sep 17 00:00:00 2001 From: github action Date: Mon, 12 Dec 2022 23:46:23 +0000 Subject: [PATCH] Apply 'make format' --- src/V3Os.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/V3Os.cpp b/src/V3Os.cpp index 78caceacb..75b82de44 100644 --- a/src/V3Os.cpp +++ b/src/V3Os.cpp @@ -80,10 +80,10 @@ string V3Os::getenvStr(const string& envvar, const string& defaultValue) { #if defined(_MSC_VER) // Note: MinGW does not offer _dupenv_s const char* envvalue = nullptr; - _dupenv_s((char **)&envvalue, nullptr, envvar.c_str()); + _dupenv_s((char**)&envvalue, nullptr, envvar.c_str()); if (envvalue != nullptr) { const std::string result{envvalue}; - free((void *)envvalue); + free((void*)envvalue); ret = result; } else { ret = defaultValue;