]> Cypherpunks.ru repositories - goredo.git/commitdiff
Shorter declaration
authorSergey Matveev <stargrave@stargrave.org>
Sat, 30 Sep 2023 12:58:13 +0000 (15:58 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Sat, 30 Sep 2023 12:58:40 +0000 (15:58 +0300)
ood.go

diff --git a/ood.go b/ood.go
index 1be39573bd4b15e2ad1ada84fec28210e9089337..52be37be889f5074fd987948b5fdd5e9fa7e2d08 100644 (file)
--- a/ood.go
+++ b/ood.go
@@ -47,8 +47,8 @@ var (
        FdOODTgts     *os.File
        FdOODTgtsLock *os.File
 
-       OODCache        map[string]bool = make(map[string]bool)
-       FileExistsCache map[string]bool = make(map[string]bool)
+       OODCache        = make(map[string]bool)
+       FileExistsCache = make(map[string]bool)
 
        ErrMissingTarget = errors.New("invalid format of .rec: missing Target")
 )