diff options
Diffstat (limited to 'internal/contentenc/file_header.go')
-rw-r--r-- | internal/contentenc/file_header.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/contentenc/file_header.go b/internal/contentenc/file_header.go index 8a9dd2c..1463773 100644 --- a/internal/contentenc/file_header.go +++ b/internal/contentenc/file_header.go @@ -15,9 +15,9 @@ const ( // Current On-Disk-Format version CurrentVersion = 2 - HEADER_VERSION_LEN = 2 // uint16 - HEADER_ID_LEN = 16 // 128 bit random file id - HEADER_LEN = HEADER_VERSION_LEN + HEADER_ID_LEN // Total header length + HEADER_VERSION_LEN = 2 // uint16 + HEADER_ID_LEN = 16 // 128 bit random file id + HEADER_LEN = HEADER_VERSION_LEN + HEADER_ID_LEN // Total header length ) type FileHeader struct { |