Skip to content

Commit

Permalink
Fix formatting (tabs/spaces)
Browse files Browse the repository at this point in the history
  • Loading branch information
davmac314 committed Jul 10, 2024
1 parent 67f9206 commit cc01738
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/tools/mconfig-gen.cc
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ int main(int argc, char **argv)
cout << "#define SUPPORT_CGROUPS " << vars["SUPPORT_CGROUPS"] << "\n";
}
if (vars.find("DEFAULT_AUTO_RESTART") != vars.end()) {
cout << "#define DEFAULT_AUTO_RESTART " << vars["DEFAULT_AUTO_RESTART"] << "\n";
cout << "#define DEFAULT_AUTO_RESTART " << vars["DEFAULT_AUTO_RESTART"] << "\n";
}
if (vars.find("DEFAULT_START_TIMEOUT") != vars.end()) {
cout << "#define DEFAULT_START_TIMEOUT " << vars["DEFAULT_START_TIMEOUT"] << "\n";
cout << "#define DEFAULT_START_TIMEOUT " << vars["DEFAULT_START_TIMEOUT"] << "\n";
}
if (vars.find("DEFAULT_STOP_TIMEOUT") != vars.end()) {
cout << "#define DEFAULT_STOP_TIMEOUT " << vars["DEFAULT_STOP_TIMEOUT"] << "\n";
cout << "#define DEFAULT_STOP_TIMEOUT " << vars["DEFAULT_STOP_TIMEOUT"] << "\n";
}

cout << "\n// Constants\n";
Expand Down

0 comments on commit cc01738

Please sign in to comment.