Skip to content

Commit

Permalink
fixup: GCC
Browse files Browse the repository at this point in the history
  • Loading branch information
eugeneo committed Dec 13, 2024
1 parent dee03c1 commit 8073fe9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/lib/event_engine/posix_engine/file_descriptors.cc
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ void FileDescriptors::Restart() {
SetState(State::kReady);
}

void FileDescriptors::ExpectStatusForTest(size_t locks, State state) {
void FileDescriptors::ExpectStatusForTest(int locks, State state) {
grpc_core::MutexLock lock(&mu_);
while (locked_descriptors_ != locks || state_ != state) {
io_cond_.Wait(&mu_);
Expand Down
2 changes: 1 addition & 1 deletion src/core/lib/event_engine/posix_engine/file_descriptors.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class FileDescriptors {
absl::Status Stop();
void Restart();

void ExpectStatusForTest(size_t locks, State state);
void ExpectStatusForTest(int locks, State state);

private:
friend class ReentrantLock;
Expand Down

0 comments on commit 8073fe9

Please sign in to comment.