summaryrefslogtreecommitdiff
path: root/src/bio.c
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2011-09-13 16:56:43 +0200
committerantirez <antirez@gmail.com>2011-09-13 16:56:43 +0200
commitd47ded66ce3c36eb41f38a20ebb5633dfa2e77b0 (patch)
tree4b6ead4e1530ab211a9c70a885e82958aba78507 /src/bio.c
parentb147cb9e1ac77e021228f3343a59db1da7c88789 (diff)
downloadredis-d47ded66ce3c36eb41f38a20ebb5633dfa2e77b0.tar.gz
make bio_list static as well
Diffstat (limited to 'src/bio.c')
-rw-r--r--src/bio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bio.c b/src/bio.c
index 92e77615d..9c2695835 100644
--- a/src/bio.c
+++ b/src/bio.c
@@ -26,7 +26,7 @@
static pthread_mutex_t bio_mutex;
static pthread_cond_t bio_condvar;
-list *bio_jobs;
+static list *bio_jobs;
/* This structure represents a background Job. It is only used locally to this
* file as the API deos not expose the internals at all. */