summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2011-09-13 16:56:43 +0200
committerantirez <antirez@gmail.com>2011-09-14 10:50:29 +0200
commit44690ab15fcb16a54822507a4d0cdbb0ba5ece4f (patch)
tree32c1404cc1ff00f44c7bbbb2974228c1a99bd809
parenta72c0423b43def624d69d27f844bb2f89d32cbff (diff)
downloadredis-44690ab15fcb16a54822507a4d0cdbb0ba5ece4f.tar.gz
make bio_list static as well
-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. */