diff --git a/src/Summary.cpp b/src/Summary.cpp index b7376b8e..cb1f7bc8 100644 --- a/src/Summary.cpp +++ b/src/Summary.cpp @@ -50,8 +50,8 @@ static void print_versions() # endif - Log::i()->text(Options::i()->colors() ? "\x1B[01;32m * \x1B[01;37mVERSIONS: \x1B[01;36mXMRig/%s\x1B[01;37m libuv/%s%s" : " * VERSIONS: XMRig/%s libuv/%s%s", - APP_VERSION, uv_version_string(), buf); + Log::i()->text(Options::i()->colors() ? "\x1B[01;32m * \x1B[01;37mVERSIONS: \x1B[01;36m%s/%s\x1B[01;37m libuv/%s%s" : " * VERSIONS: %s/%s libuv/%s%s", + APP_NAME, APP_VERSION, uv_version_string(), buf); } @@ -147,6 +147,3 @@ void Summary::print() print_pools(); print_commands(); } - - - diff --git a/src/api/Api.cpp b/src/api/Api.cpp index 20882133..f6bd2e12 100644 --- a/src/api/Api.cpp +++ b/src/api/Api.cpp @@ -22,6 +22,8 @@ */ +#include + #include "api/Api.h" #include "api/ApiState.h" diff --git a/src/api/Httpd.cpp b/src/api/Httpd.cpp index 6a61ac74..ab50fa52 100644 --- a/src/api/Httpd.cpp +++ b/src/api/Httpd.cpp @@ -21,7 +21,7 @@ * along with this program. If not, see . */ - +#include #include diff --git a/src/api/NetworkState.cpp b/src/api/NetworkState.cpp index e3c76ec1..01c2047d 100644 --- a/src/api/NetworkState.cpp +++ b/src/api/NetworkState.cpp @@ -23,6 +23,7 @@ #include +#include #include