1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-14 23:27:26 +00:00

Resolves various instances of spaces in place of tabs.

This commit is contained in:
Thomas Harte
2018-09-09 20:33:56 -04:00
parent 22a52bdca2
commit fc84ae611e
4 changed files with 52 additions and 52 deletions

View File

@@ -293,7 +293,7 @@ std::string system_get(const char *command) {
std::string result;
while(!feof(pipe.get())) {
std::array<char, 256> buffer;
if (fgets(buffer.data(), buffer.size(), pipe.get()) != nullptr)
if(fgets(buffer.data(), buffer.size(), pipe.get()) != nullptr)
result += buffer.data();
}
return result;