aboutsummaryrefslogtreecommitdiff
path: root/go/storage/cdb_map.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/storage/cdb_map.go')
-rw-r--r--go/storage/cdb_map.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/go/storage/cdb_map.go b/go/storage/cdb_map.go
index 3e38b0bdb..0d790cc0f 100644
--- a/go/storage/cdb_map.go
+++ b/go/storage/cdb_map.go
@@ -76,8 +76,8 @@ func (m cdbMap) FileCount() int {
func (m *cdbMap) DeletedCount() int {
return m.DeletionCounter
}
-func (m *cdbMap) NextFileKey(count int) (uint64) {
- return 0
+func (m *cdbMap) NextFileKey(count int) uint64 {
+ return 0
}
func getMetric(c *cdb.Cdb, m *mapMetric) error {