Skip to content
Snippets Groups Projects
Commit ab8177cf authored by Jan David Mol's avatar Jan David Mol
Browse files

SW-642: Replaced spaces with tabs.

parent f22db406
No related branches found
No related tags found
No related merge requests found
...@@ -18,11 +18,11 @@ int main(int argc, char** argv) ...@@ -18,11 +18,11 @@ int main(int argc, char** argv)
{ {
GCFScheduler::instance()->init(argc, argv, "rspctl"); GCFScheduler::instance()->init(argc, argv, "rspctl");
// Log command line to track usage // Log command line to track usage
stringstream s; stringstream s;
for (int i = 0; i < argc; i++) for (int i = 0; i < argc; i++)
s << argv[i] << " "; s << argv[i] << " ";
LOG_INFO_STR("Command line: " << s.str()); LOG_INFO_STR("Command line: " << s.str());
LOG_INFO(formatString("Program %s has started", argv[0])); LOG_INFO(formatString("Program %s has started", argv[0]));
......
...@@ -216,11 +216,11 @@ int main(int argc, char* argv[]) ...@@ -216,11 +216,11 @@ int main(int argc, char* argv[])
// args: cntlrname, parentHost, parentService // args: cntlrname, parentHost, parentService
GCFScheduler::instance()->init(argc, argv, "clkctl"); GCFScheduler::instance()->init(argc, argv, "clkctl");
// Log command line to track usage // Log command line to track usage
stringstream s; stringstream s;
for (int i = 0; i < argc; i++) for (int i = 0; i < argc; i++)
s << argv[i] << " "; s << argv[i] << " ";
LOG_INFO_STR("Command line: " << s.str()); LOG_INFO_STR("Command line: " << s.str());
ClkCtl cc(argv[1]); ClkCtl cc(argv[1]);
cc.start(); // make initial transition cc.start(); // make initial transition
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment