diff options
author | Koichiro IWAO <meta@vmeta.jp> | 2017-07-24 13:44:35 +0900 |
---|---|---|
committer | metalefty <meta@vmeta.jp> | 2017-07-25 11:40:04 +0900 |
commit | e990dd4263b48c69ddb0507513933479f0c4983b (patch) | |
tree | f72506c1dd21c880a847dd1aa7b6cfa90d5df97a | |
parent | ca24572fd5aa451cd618202be9daa232adaf2814 (diff) | |
download | xrdp-proprietary-e990dd4263b48c69ddb0507513933479f0c4983b.tar.gz xrdp-proprietary-e990dd4263b48c69ddb0507513933479f0c4983b.zip |
chansrv: remove trailing space
-rw-r--r-- | sesman/chansrv/sound.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sesman/chansrv/sound.c b/sesman/chansrv/sound.c index 73c30d95..092d259f 100644 --- a/sesman/chansrv/sound.c +++ b/sesman/chansrv/sound.c @@ -755,7 +755,7 @@ sound_send_close(void) /* send any left over data */ if (g_buf_index) { - if (sound_send_wave_data_chunk(g_buffer, g_buf_index) != 0) + if (sound_send_wave_data_chunk(g_buffer, g_buf_index) != 0) { LOG(10, ("sound_send_close: sound_send_wave_data_chunk failed")); return 1; @@ -1021,7 +1021,7 @@ sound_data_in(struct stream *s, int chan_id, int chan_flags, int length, int size; int ok_to_free = 1; - if (!read_entire_packet(s, &g_stream_incoming_packet, chan_flags, + if (!read_entire_packet(s, &g_stream_incoming_packet, chan_flags, length, total_length)) { return 0; |