Skip to content

Commit

Permalink
Added \n to warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
dankmolot committed Aug 9, 2024
1 parent da201ba commit c250f45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,10 @@ GMOD_MODULE_CLOSE() {
Lua::Think(LUA->GetState());

if (tryNum == 10) {
Warning("AsyncIO: Tried synchronously to finish all async IO operations, but there are still %d task pending. Ignoring them.", AsyncIO::Tasks.size());
Warning("AsyncIO: Tried synchronously to finish all async IO operations, but there are still %d task pending. Ignoring them.\n", AsyncIO::Tasks.size());
break;
}
}

return 0;
}
}

0 comments on commit c250f45

Please sign in to comment.