From d47ded66ce3c36eb41f38a20ebb5633dfa2e77b0 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 13 Sep 2011 16:56:43 +0200 Subject: [PATCH] make bio_list static as well --- src/bio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bio.c b/src/bio.c index 92e77615..9c269583 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. */