module-tunnel: Fix typos

Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/733>
This commit is contained in:
Peter Meerwald-Stadler 2022-06-14 00:17:09 +02:00 committed by PulseAudio Marge Bot
parent 63d0db832c
commit f71eafe4d9

View file

@ -1000,7 +1000,7 @@ static void stream_get_latency_callback(pa_pdispatch *pd, uint32_t command, uint
else
delay -= (int64_t) pa_bytes_to_usec((uint64_t) (read_index-write_index), ss);
/* Our measurements are already out of date, hence correct by the *
/* Our measurements are already out of date, hence correct by the
* transport latency */
#ifdef TUNNEL_SINK
delay -= (int64_t) u->transport_usec;
@ -1008,7 +1008,7 @@ static void stream_get_latency_callback(pa_pdispatch *pd, uint32_t command, uint
delay += (int64_t) u->transport_usec;
#endif
/* Now correct by what we have have written since we requested the update. This
/* Now correct by what we have written since we requested the update. This
* is not necessary for the source, because if data is received between request
* and reply, it was already posted before we requested the source latency. */
#ifdef TUNNEL_SINK