aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-05-15 14:39:19 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2018-05-15 14:39:19 +0200
commitbac671eda8f34918b7f71e6e42a3e92fac931efa (patch)
treec1165d73e24511bb507d1b688988df7641536f1d
parente38ee9b808970cd49663221cb823365ef18797d5 (diff)
tests: jibuf_test: Set some functions as static
-rw-r--r--tests/jibuf/jibuf_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/jibuf/jibuf_test.c b/tests/jibuf/jibuf_test.c
index 6e8c805..c0c24fd 100644
--- a/tests/jibuf/jibuf_test.c
+++ b/tests/jibuf/jibuf_test.c
@@ -619,7 +619,7 @@ static void test_rtp_marker(void)
osmo_jibuf_delete(jb);
}
-void test_rtp_out_of_sync(unsigned int time_inc_ms, uint16_t seq_nosync_inc, uint32_t ts_nosync_inc, bool expect_drop)
+static void test_rtp_out_of_sync(unsigned int time_inc_ms, uint16_t seq_nosync_inc, uint32_t ts_nosync_inc, bool expect_drop)
{
int min_delay = 60;
struct msgb *msg;
@@ -686,7 +686,7 @@ void test_rtp_out_of_sync(unsigned int time_inc_ms, uint16_t seq_nosync_inc, uin
}
-void test_skew(unsigned int skew_inc_us, bool skew_compensation) {
+static void test_skew(unsigned int skew_inc_us, bool skew_compensation) {
int min_delay = 40;
unsigned int dropped = 0;
struct msgb *msg;