aboutsummaryrefslogtreecommitdiff
path: root/internal/contentenc/intrablock.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-07-02 15:33:48 +0200
committerJakob Unterwurzacher2016-07-02 15:35:06 +0200
commit04ad0635159150409252f6901463768008802221 (patch)
treec9cfe215fef896916cabeee130159e48077d3968 /internal/contentenc/intrablock.go
parent7b22b426b9f5e68a0ff51799e04f193dc74586d0 (diff)
fusefronted: move Truncate() and Allocate() to their own file
These are large complicated implementations that will share some code.
Diffstat (limited to 'internal/contentenc/intrablock.go')
-rw-r--r--internal/contentenc/intrablock.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/contentenc/intrablock.go b/internal/contentenc/intrablock.go
index ec9562d..9a22ea2 100644
--- a/internal/contentenc/intrablock.go
+++ b/internal/contentenc/intrablock.go
@@ -4,7 +4,7 @@ package contentenc
type intraBlock struct {
BlockNo uint64 // Block number in file
Skip uint64 // Offset into block plaintext
- Length uint64 // Length of data from this block
+ Length uint64 // Length of plaintext data in this block
fs *ContentEnc
}