diff --git a/slsReceiverSoftware/src/Arping.cpp b/slsReceiverSoftware/src/Arping.cpp index edc1f4b93c..7633e041bf 100644 --- a/slsReceiverSoftware/src/Arping.cpp +++ b/slsReceiverSoftware/src/Arping.cpp @@ -5,9 +5,9 @@ #include #include +#include #include #include -#include namespace sls { @@ -17,9 +17,7 @@ namespace sls { #define gettid() syscall(SYS_gettid) #endif -void func(int signum) { - wait(NULL); -} +void func(int signum) { wait(NULL); } Arping::Arping() {} @@ -122,7 +120,8 @@ std::string Arping::ExecuteCommands() { FILE *sysFile = popen(cmd.c_str(), "r"); if (sysFile == NULL) { std::ostringstream os; - os << "Could not Arping (" << cmd << " ) : Popen fail (" << strerror(errno) << ')'; + os << "Could not Arping (" << cmd << " ) : Popen fail (" + << strerror(errno) << ')'; return os.str(); } @@ -134,7 +133,7 @@ std::string Arping::ExecuteCommands() { // check exit status of command if (pclose(sysFile)) { std::ostringstream os; - os << "Could not arping (" << cmd << ") : " << strerror(errno); + os << "Could not arping (" << cmd << ") : " << strerror(errno); return os.str(); } else { LOG(logDEBUG) << output; diff --git a/slsSupportLib/include/sls/versionAPI.h b/slsSupportLib/include/sls/versionAPI.h index 026fb4da8e..e392dc1017 100644 --- a/slsSupportLib/include/sls/versionAPI.h +++ b/slsSupportLib/include/sls/versionAPI.h @@ -10,4 +10,4 @@ #define APIMOENCH "7.0.0 0x230222" #define APIEIGER "7.0.0 0x230222" #define APIRECEIVER "7.0.0 0x230222" -#define APILIB "7.0.1 0x230323" +#define APILIB "7.0.1 0x230323"