Skip to content

Commit

Permalink
rtl_tcp: make all global variables static
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Markgraf <[email protected]>
  • Loading branch information
steve-m committed Feb 10, 2014
1 parent 89f73b1 commit 6ee5573
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rtl_tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 6ee5573

Please sign in to comment.