From b56a2fbfc0757162c1e225bea17f4df0c7a71365 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Tue, 17 Jun 2008 18:06:10 +0000 Subject: [PATCH] ebl fix segfault with debug > 200 git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7157 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/src/dird/jobq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacula/src/dird/jobq.c b/bacula/src/dird/jobq.c index 26a3316d6e..e8900f2b04 100644 --- a/bacula/src/dird/jobq.c +++ b/bacula/src/dird/jobq.c @@ -742,7 +742,7 @@ static void dec_read_store(JCR *jcr) if (jcr->rstore) { jcr->rstore->NumConcurrentReadJobs--; /* back out rstore */ jcr->rstore->NumConcurrentJobs--; /* back out rstore */ - Dmsg1(200, "Dec wncj=%d\n", jcr->wstore->NumConcurrentJobs); + Dmsg1(200, "Dec wncj=%d\n", jcr->rstore->NumConcurrentJobs); ASSERT(jcr->rstore->NumConcurrentReadJobs >= 0); ASSERT(jcr->rstore->NumConcurrentJobs >= 0); } -- 2.39.5