cosmetic: stats_tcp: Fix typo in comment

Take the chance to shorten a bit the lengthy lines

Change-Id: I3215dea7e3198b728745a779ad1b6ebfa3795cb5
This commit is contained in:
Pau Espin 2023-03-09 18:38:56 +01:00 committed by pespin
parent a41bd22349
commit 8d1532af92
1 changed files with 4 additions and 2 deletions

View File

@ -247,8 +247,10 @@ int osmo_stats_tcp_osmo_fd_unregister(const struct osmo_fd *fd)
pthread_mutex_lock(&stats_tcp_lock);
llist_for_each_entry(stats_tcp_entry, &stats_tcp, entry) {
if (fd->fd == stats_tcp_entry->fd->fd) {
/* In case we want to remove exactly that item which is also selected as the current itemy, we
* must designate either a different item or invalidate the current item. */
/* In case we want to remove exactly that item which is also
* selected as the current item, we must designate either a
* different item or invalidate the current item.
*/
if (stats_tcp_entry == stats_tcp_entry_cur) {
if (llist_count(&stats_tcp) > 2)
next_stats_tcp_entry();