Skip to content

Commit

Permalink
"int i" change to "int j"
Browse files Browse the repository at this point in the history
  • Loading branch information
lokenetwork authored Aug 8, 2023
1 parent 73dd8af commit fece1e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trunk/src/app/srs_app_threads.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -693,8 +693,8 @@ srs_error_t SrsThreadPool::run()
// Check the threads status fastly.
int loops = (int)(interval_ / SRS_UTIME_SECONDS);
for (int i = 0; i < loops; i++) {
for (int i = 0; i < (int)threads.size(); i++) {
SrsThreadEntry* entry = threads.at(i);
for (int j = 0; j < (int)threads.size(); j++) {
SrsThreadEntry* entry = threads.at(j);
if (entry->err != srs_success) {
// Quit with success.
if (srs_error_code(entry->err) == ERROR_THREAD_FINISHED) {
Expand Down

0 comments on commit fece1e8

Please sign in to comment.