From cb09fa61493590811c57f0ee727c056312ca5930 Mon Sep 17 00:00:00 2001 From: Stéphane Raimbault Date: Fri, 5 Feb 2016 11:30:36 +0100 Subject: [PATCH] tests: add missing static in bandwith-server-many --- tests/bandwidth-server-many-up.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/bandwidth-server-many-up.c b/tests/bandwidth-server-many-up.c index b78c939..84b59f0 100644 --- a/tests/bandwidth-server-many-up.c +++ b/tests/bandwidth-server-many-up.c @@ -24,9 +24,10 @@ #define NB_CONNECTION 5 -modbus_t *ctx = NULL; -int server_socket = -1; -modbus_mapping_t *mb_mapping; +static modbus_t *ctx = NULL; +static modbus_mapping_t *mb_mapping; + +static int server_socket = -1; static void close_sigint(int dummy) { -- libgit2 0.21.4