diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-05 15:43:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-05 15:43:01 +0100 |
| commit | 7ada59efb79f64882305c26c3a155385e5dcc05c (patch) | |
| tree | 55db440c5a85ee333fd18236b3fe897a19fed554 /platform/uwp/export | |
| parent | 9591ca3fe58298ef01ab12f1e59e91399a7ce2d4 (diff) | |
| parent | 677604685dd2292f44fedb1b9a5b08b22137219a (diff) | |
Merge pull request #33391 from madmiraal/cleanup-error_macros
Clean up error_macros.h
Diffstat (limited to 'platform/uwp/export')
| -rw-r--r-- | platform/uwp/export/export.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/uwp/export/export.cpp b/platform/uwp/export/export.cpp index 57fb9004b8..5a9a1cc727 100644 --- a/platform/uwp/export/export.cpp +++ b/platform/uwp/export/export.cpp @@ -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; } |