tMinor stylistic changes - ratox - FIFO based tox client
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit bc0b844cdbde4e396f55d11dce0312887b49ecae
 (DIR) parent ec6500034cced8095959c9bf3c74566d0335e000
 (HTM) Author: sin <sin@2f30.org>
       Date:   Sat,  4 Oct 2014 10:58:42 +0100
       
       Minor stylistic changes
       
       Diffstat:
         M ratox.c                             |       9 ++++-----
       
       1 file changed, 4 insertions(+), 5 deletions(-)
       ---
 (DIR) diff --git a/ratox.c b/ratox.c
       t@@ -551,8 +551,8 @@ sendfriendcalldata(struct friend *f)
                ssize_t n, payloadsize;
        
                n = fiforead(f->dirfd, &f->fd[FCALL_IN], ffiles[FCALL_IN],
       -                     f->av.frame + f->av.incompleteframe * f->av.n,
       -                     framesize * sizeof(int16_t) - f->av.incompleteframe * f->av.n);
       +                     f->av.frame + f->av.incompleteframe * f->av.n,
       +                     framesize * sizeof(int16_t) - f->av.incompleteframe * f->av.n);
                if (n == 0) {
                        memset(f->av.frame + f->av.incompleteframe * f->av.n, 0,
                               framesize * sizeof(int16_t) - f->av.incompleteframe * f->av.n);
       t@@ -567,8 +567,8 @@ sendfriendcalldata(struct friend *f)
                }
        
                payloadsize = toxav_prepare_audio_frame(toxav, f->av.num,
       -                                                 f->av.payload, sizeof(f->av.payload),
       -                                                 (int16_t *)f->av.frame, framesize);
       +                                                f->av.payload, sizeof(f->av.payload),
       +                                                (int16_t *)f->av.frame, framesize);
                if (payloadsize < 0)
                        eprintf("failed to encode payload\n");
        
       t@@ -582,7 +582,6 @@ sendfriendcalldata(struct friend *f)
                        f->av.state = av_CallNonExistant;
                        return;
                }
       -
        }
        
        static void