From 974fd3bcfd04f51ac0a640a0fae10f7df32b709e Mon Sep 17 00:00:00 2001 From: Peter Meerwald Date: Thu, 23 Oct 2014 11:28:39 +0200 Subject: [PATCH] tests: Make global variables static in srbchannel-test Signed-off-by: Peter Meerwald --- src/tests/srbchannel-test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tests/srbchannel-test.c b/src/tests/srbchannel-test.c index 78a401b16..7fd793f4f 100644 --- a/src/tests/srbchannel-test.c +++ b/src/tests/srbchannel-test.c @@ -32,9 +32,9 @@ #include #include -int packets_received; -int packets_checksum; -int packets_length; +static int packets_received; +static int packets_checksum; +static int packets_length; static void packet_received(pa_pstream *p, pa_packet *packet, const pa_ancil *ancil, void *userdata) { unsigned int i;