Remove duplicate ERR_PRINT macro.
This commit is contained in:
parent
2b1084fab3
commit
5af3b4ca27
76 changed files with 173 additions and 178 deletions
|
|
@ -1397,7 +1397,7 @@ public:
|
|||
}
|
||||
|
||||
if (!FileAccess::exists(signtool_path)) {
|
||||
ERR_PRINTS("Could not find signtool executable at " + signtool_path + ", aborting.");
|
||||
ERR_PRINT("Could not find signtool executable at " + signtool_path + ", aborting.");
|
||||
return ERR_FILE_NOT_FOUND;
|
||||
}
|
||||
|
||||
|
|
@ -1418,12 +1418,12 @@ public:
|
|||
}
|
||||
|
||||
if (!FileAccess::exists(cert_path)) {
|
||||
ERR_PRINTS("Could not find certificate file at " + cert_path + ", aborting.");
|
||||
ERR_PRINT("Could not find certificate file at " + cert_path + ", aborting.");
|
||||
return ERR_FILE_NOT_FOUND;
|
||||
}
|
||||
|
||||
if (cert_alg < 0 || cert_alg > 2) {
|
||||
ERR_PRINTS("Invalid certificate algorithm " + itos(cert_alg) + ", aborting.");
|
||||
ERR_PRINT("Invalid certificate algorithm " + itos(cert_alg) + ", aborting.");
|
||||
return ERR_INVALID_DATA;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue