diff --git a/libsrc/jsonserver/JsonClientConnection.cpp b/libsrc/jsonserver/JsonClientConnection.cpp index cfd0887d..79a749ad 100644 --- a/libsrc/jsonserver/JsonClientConnection.cpp +++ b/libsrc/jsonserver/JsonClientConnection.cpp @@ -23,7 +23,6 @@ #include #include #include -#include // project includes #include "JsonClientConnection.h" @@ -597,7 +596,7 @@ void JsonClientConnection::handleServerInfoCommand(const Json::Value &) Json::Value & version = info["hyperion_build"] = Json::Value(Json::arrayValue); Json::Value ver; ver["version"] = HYPERION_VERSION_ID; - ver["time"] = __DATE__" "__TIME__; + ver["time"] = __DATE__ " " __TIME__; version.append(ver);