an efficient binary archive format
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix footer magic value

zach 3d342727 e42fb1fb

+1 -1
+1 -1
src/lib.rs
··· 15 15 const FOOTER_SIZE: usize = std::mem::size_of::<Footer>(); 16 16 const HEADER_SIZE: usize = 8; 17 17 const AUTO_COMPRESS_THRESHOLD: usize = 2048; 18 - const FOOTER_MAGIC: u32 = 0x98989898; 18 + const FOOTER_MAGIC: u32 = 0x62626262; 19 19 20 20 fn pad< 21 21 const SIZE: usize,