diff options
author | z3bra <contactatz3bradotorg> | 2016-11-02 08:38:05 +0100 |
---|---|---|
committer | z3bra <contactatz3bradotorg> | 2016-11-08 16:47:51 +0100 |
commit | 6a8af21a5cec1e317618799bb7be8054fb1b43be (patch) | |
tree | b6223088192b41dfd76fbb4fb652468514bf0525 /ratox.c | |
parent | 98db92a98e7daeee91f2b47de2a25a8d97899015 (diff) |
Fix AV buffer signedness
Diffstat (limited to 'ratox.c')
-rw-r--r-- | ratox.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -515,7 +515,7 @@ sendfriendcalldata(struct friend *f) { struct timespec now, diff; ssize_t n, pcm; - uint16_t *buf; + int16_t *buf; n = fiforead(f->dirfd, &f->fd[FCALL_IN], ffiles[FCALL_IN], f->av.frame + (f->av.state & INCOMPLETE) * f->av.n, |