]> git.saurik.com Git - redis.git/commitdiff
make bio_list static as well
authorantirez <antirez@gmail.com>
Tue, 13 Sep 2011 14:56:43 +0000 (16:56 +0200)
committerantirez <antirez@gmail.com>
Tue, 13 Sep 2011 14:56:43 +0000 (16:56 +0200)
src/bio.c

index 92e77615d0e51924bf6605c76e496474fd28bb6c..9c2695835cab1ad7137dafa20da27de1be3f12f5 100644 (file)
--- 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. */