libstdc++: Fix formatting in std::filesystem helper function
authorJonathan Wakely <jwakely@redhat.com>
Mon, 20 Mar 2023 13:40:59 +0000 (13:40 +0000)
committerJonathan Wakely <jwakely@redhat.com>
Mon, 20 Mar 2023 23:03:57 +0000 (23:03 +0000)
libstdc++-v3/ChangeLog:

* src/filesystem/ops-common.h (get_temp_directory_from_env): Fix
formatting.

libstdc++-v3/src/filesystem/ops-common.h

index abbfca4..c95511b 100644 (file)
@@ -625,7 +625,8 @@ _GLIBCXX_BEGIN_NAMESPACE_FILESYSTEM
       {
        buf.resize(len);
        len = GetTempPathW(buf.size(), buf.data());
-      } while (len > buf.size());
+      }
+    while (len > buf.size());
 
     if (len == 0)
       ec = __last_system_error();