aboutsummaryrefslogtreecommitdiffstats
path: root/cache/bug_cache.go
diff options
context:
space:
mode:
Diffstat (limited to 'cache/bug_cache.go')
-rw-r--r--cache/bug_cache.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cache/bug_cache.go b/cache/bug_cache.go
index 01d93593..775af6d1 100644
--- a/cache/bug_cache.go
+++ b/cache/bug_cache.go
@@ -19,7 +19,7 @@ var ErrNoMatchingOp = fmt.Errorf("no matching operation found")
// 3. Deal with concurrency.
type BugCache struct {
repoCache *RepoCache
- mu *sync.RWMutex
+ mu sync.RWMutex
bug *bug.WithSnapshot
}