summaryrefslogtreecommitdiffstats
path: root/src/utils/padsp.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-08-29 23:53:55 +0200
committerLennart Poettering <lennart@poettering.net>2008-08-29 23:53:55 +0200
commit13018d62c10731459b0b4fd3f6852dcebddbccb8 (patch)
tree56115c47b62e8062100492867a8d358d12d571ee /src/utils/padsp.c
parent506eacc9228eaf4f9ed805ca22157988327311fb (diff)
fix a few compiler warnings on older gcc
Diffstat (limited to 'src/utils/padsp.c')
-rw-r--r--src/utils/padsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/padsp.c b/src/utils/padsp.c
index 134a7e58..2c88c483 100644
--- a/src/utils/padsp.c
+++ b/src/utils/padsp.c
@@ -864,7 +864,7 @@ static int fd_info_copy_data(fd_info *i, int force) {
return -1;
}
- if (pa_stream_write(i->play_stream, i->buf, (size_t) r, free, 0, PA_SEEK_RELATIVE) < 0) {
+ if (pa_stream_write(i->play_stream, i->buf, (size_t) r, free, 0LL, PA_SEEK_RELATIVE) < 0) {
debug(DEBUG_LEVEL_NORMAL, __FILE__": pa_stream_write(): %s\n", pa_strerror(pa_context_errno(i->context)));
return -1;
}