diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-11-23 08:49:04 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-11-24 23:58:22 +0100 |
commit | 6832c1d4b2a9eb97a36bb6565c84a8eef451a39c (patch) | |
tree | dad19839fa62edb783545b6387ec3fba151dd813 /tests/libtest | |
parent | 80e7cfeb87c18a7552933ff43a96bd1b709eec22 (diff) |
checksrc: move open braces to comply with function declaration style
Diffstat (limited to 'tests/libtest')
-rw-r--r-- | tests/libtest/lib571.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/libtest/lib571.c b/tests/libtest/lib571.c index ad6c366b4..32648ad12 100644 --- a/tests/libtest/lib571.c +++ b/tests/libtest/lib571.c @@ -50,7 +50,8 @@ static const char *RTP_DATA = "$_1234\n\0asdf"; static int rtp_packet_count = 0; -static size_t rtp_write(void *ptr, size_t size, size_t nmemb, void *stream) { +static size_t rtp_write(void *ptr, size_t size, size_t nmemb, void *stream) +{ char *data = (char *)ptr; int channel = RTP_PKT_CHANNEL(data); int message_size; |