mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-03 09:01:50 -05:00
fix a few compiler warnings on older gcc
This commit is contained in:
parent
506eacc922
commit
13018d62c1
10 changed files with 19 additions and 19 deletions
|
|
@ -272,7 +272,7 @@ int pa_simple_write(pa_simple *p, const void*data, size_t length, int *rerror) {
|
|||
if (l > length)
|
||||
l = length;
|
||||
|
||||
r = pa_stream_write(p->stream, data, l, NULL, 0, PA_SEEK_RELATIVE);
|
||||
r = pa_stream_write(p->stream, data, l, NULL, 0LL, PA_SEEK_RELATIVE);
|
||||
CHECK_SUCCESS_GOTO(p, rerror, r >= 0, unlock_and_fail);
|
||||
|
||||
data = (const uint8_t*) data + l;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue