diff options
-rw-r--r-- | src/pulsecore/sink-input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/sink-input.c b/src/pulsecore/sink-input.c index 1da920a9..bb377c44 100644 --- a/src/pulsecore/sink-input.c +++ b/src/pulsecore/sink-input.c @@ -1149,7 +1149,7 @@ void pa_sink_input_request_rewind(pa_sink_input *i, size_t nbytes /* in our sam /* Make sure to not overwrite over underruns */ if (!ignore_underruns) - if ((int64_t) nbytes > i->thread_info.playing_for) + if (nbytes > i->thread_info.playing_for) nbytes = (size_t) i->thread_info.playing_for; i->thread_info.rewrite_nbytes = nbytes; |