Commit cb09fa61493590811c57f0ee727c056312ca5930
1 parent
988c9151
tests: add missing static in bandwith-server-many
Showing
1 changed file
with
4 additions
and
3 deletions
tests/bandwidth-server-many-up.c
| ... | ... | @@ -24,9 +24,10 @@ |
| 24 | 24 | |
| 25 | 25 | #define NB_CONNECTION 5 |
| 26 | 26 | |
| 27 | -modbus_t *ctx = NULL; | |
| 28 | -int server_socket = -1; | |
| 29 | -modbus_mapping_t *mb_mapping; | |
| 27 | +static modbus_t *ctx = NULL; | |
| 28 | +static modbus_mapping_t *mb_mapping; | |
| 29 | + | |
| 30 | +static int server_socket = -1; | |
| 30 | 31 | |
| 31 | 32 | static void close_sigint(int dummy) |
| 32 | 33 | { | ... | ... |