Skip to content

Commit

Permalink
[GCC13] Warnings end up as errors. Fixed. (#1801)
Browse files Browse the repository at this point in the history
  • Loading branch information
pwielders authored Dec 3, 2024
1 parent ef4ca1a commit fb301f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Thunder/PluginServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1094,7 +1094,7 @@ namespace PluginHost {
_security = nullptr;
}

Close(0);
Close(Core::infinite);
}

//
Expand Down
2 changes: 1 addition & 1 deletion Source/cryptalgo/SecureSocketPort.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ void SecureSocketPort::Handler::ValidateHandShake() {
void SecureSocketPort::Handler::Update() {

if (IsOpen() == true) {
int result;
int result = 1;

ASSERT(_ssl != nullptr);

Expand Down

0 comments on commit fb301f6

Please sign in to comment.