diff --git a/server/src/receive.c b/server/src/receive.c index d3d0d704c..b1a541c34 100644 --- a/server/src/receive.c +++ b/server/src/receive.c @@ -34,7 +34,8 @@ int main(int argc, char *argv[]) if (argc != 2) { printf("Usage: %s LOCAL\n", argv[0]); printf(" LOCAL is a IP:PORT combination of the local host\n\n"); - printf("Simulator2Simulator Server %s (built on %s %s)\n", BLU(VERSION), MAG(__DATE__), MAG(__TIME__)); + printf("Simulator2Simulator Server %s (built on %s %s)\n", + BLU(VERSION), MAG(__DATE__), MAG(__TIME__)); printf("Copyright 2014, Institute for Automation of Complex Power Systems, EONERC\n"); exit(EXIT_FAILURE); } diff --git a/server/src/send.c b/server/src/send.c index 5c74b3106..e6296c440 100644 --- a/server/src/send.c +++ b/server/src/send.c @@ -36,7 +36,8 @@ int main(int argc, char *argv[]) printf("Usage: %s REMOTE [LOCAL]\n", argv[0]); printf(" REMOTE is a IP:PORT combination of the remote host\n"); printf(" LOCAL is an optional IP:PORT combination of the local host\n"); - printf("Simulator2Simulator Server %s (built on %s %s)\n", BLU(VERSION), MAG(__DATE__), MAG(__TIME__)); + printf("Simulator2Simulator Server %s (built on %s %s)\n", + BLU(VERSION), MAG(__DATE__), MAG(__TIME__)); printf("Copyright 2014, Institute for Automation of Complex Power Systems, EONERC\n"); exit(EXIT_FAILURE); } diff --git a/server/src/server.c b/server/src/server.c index c871059e2..74827bb7e 100644 --- a/server/src/server.c +++ b/server/src/server.c @@ -127,7 +127,8 @@ int main(int argc, char *argv[]) if (argc != 2) { printf("Usage: %s CONFIG\n", argv[0]); printf(" CONFIG is a required path to a configuration file\n\n"); - printf("Simulator2Simulator Server %s (built on %s, %s)\n", BLU(VERSION), MAG(__DATE__), MAG(__TIME__)); + printf("Simulator2Simulator Server %s (built on %s, %s)\n", + BLU(VERSION), MAG(__DATE__), MAG(__TIME__)); printf(" Copyright 2014, Institute for Automation of Complex Power Systems, EONERC\n"); printf(" Steffen Vogel \n"); exit(EXIT_FAILURE); diff --git a/server/src/test.c b/server/src/test.c index 6ec182c59..ee77d824b 100644 --- a/server/src/test.c +++ b/server/src/test.c @@ -40,7 +40,8 @@ int main(int argc, char *argv[]) printf(" TEST has to be 'rtt' for now\n"); printf(" LOCAL is a IP:PORT combination of the local host\n"); printf(" REMOTE is a IP:PORT combination of the remote host\n\n"); - printf("Simulator2Simulator Server %s (built on %s %s)\n", BLU(VERSION), MAG(__DATE__), MAG(__TIME__)); + printf("Simulator2Simulator Server %s (built on %s %s)\n", + BLU(VERSION), MAG(__DATE__), MAG(__TIME__)); printf("Copyright 2014, Institute for Automation of Complex Power Systems, EONERC\n"); exit(EXIT_FAILURE); }