rtl_tcp: make all global variables static

Signed-off-by: Steve Markgraf <steve@steve-m.de>
This commit is contained in:
Steve Markgraf 2014-02-10 23:59:21 +01:00
parent 89f73b183f
commit 6ee5573606
1 changed files with 2 additions and 2 deletions

View File

@ -78,9 +78,9 @@ typedef struct { /* structure size must be multiple of 2 bytes */
static rtlsdr_dev_t *dev = NULL;
int global_numq = 0;
static int global_numq = 0;
static struct llist *ll_buffers = 0;
int llbuf_num=500;
static int llbuf_num = 500;
static volatile int do_exit = 0;