diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-02-05 22:15:47 -0700 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-02-05 22:15:47 -0700 |
commit | 0ed3dc3071d7ef0503f3fcbd015b63bbd6eae93e (patch) | |
tree | ac84cf42ed379c1d7b9b0d094a1ac2fe02869dd2 /meta.go | |
parent | Merge pull request #7 from benbjohnson/delete (diff) | |
download | dedo-0ed3dc3071d7ef0503f3fcbd015b63bbd6eae93e.tar.gz dedo-0ed3dc3071d7ef0503f3fcbd015b63bbd6eae93e.tar.xz |
Rename sys ☞ buckets.
Diffstat (limited to 'meta.go')
-rw-r--r-- | meta.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,7 +7,7 @@ type meta struct { version uint32 pageSize uint32 flags uint32 - sys pgid + buckets pgid free pgid pgid pgid txnid txnid @@ -31,7 +31,7 @@ func (m *meta) copy(dest *meta) { dest.pgid = m.pgid dest.free = m.free dest.txnid = m.txnid - dest.sys = m.sys + dest.buckets = m.buckets } // write writes the meta onto a page. |