Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
test: make variables in benchmark-ares static
  • Loading branch information
bnoordhuis committed Mar 15, 2012
1 parent 6031156 commit c21184c
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions test/benchmark-ares.c
Expand Up @@ -28,15 +28,13 @@

static uv_loop_t* loop;

ares_channel channel;
struct ares_options options;
int optmask;
static ares_channel channel;
static struct ares_options options;
static int optmask;

struct in_addr testsrv;

int ares_callbacks;
int ares_errors;
int argument;
static int ares_callbacks;
static int ares_errors;
static int argument;

#define NUM_CALLS_TO_START 1000

Expand Down

0 comments on commit c21184c

Please sign in to comment.