fix defin messages

This commit is contained in:
Markus 2019-11-04 17:36:25 +01:00
parent b04bde2ed6
commit 9e223fd99b
2 changed files with 2 additions and 3 deletions

View File

@ -61,8 +61,7 @@ struct Settings {

//Nicht x86 Architekture
#else
#error Falsche Architektur: Der Updater Fuktion wird nicht Funktionieren!
#error Remove this 2 ErrorLines in the Code to use S_New4 without an Updater ( If your System is Linux or Windows )
#error Falsche Architektur: Der Updater Fuktion wird nicht Funktionieren! Remove this Line in the Code to use S_New4 without the Updater. ( But your System must be Windows or Linux )
const std::string VersionFileUrl = "";
const std::string ProgrammFileUrl = "";
#endif

View File

@ -1098,7 +1098,7 @@ int ProgramManager::updateModus(Settings *settings)
std::cout << " => INFO: Überprüfe die Funktionalität der neuen Version..." << std::endl;

if( system((downloadedFilePath + " --version" ).c_str()) != 0) {
perror(" => Error: Ausführen der neuen Version ist fehlgeschlagen");
std::cerr << (" => Error: Ausführen der neuen Version ist fehlgeschlagen") << std::endl;
return 5;
}