Fix chunk count not being updated

Amend: Update Version
master
trivernis 5 years ago
parent aaea1d83af
commit 98e53372eb

@ -1,6 +1,6 @@
[package]
name = "bdflib"
version = "0.1.3"
version = "0.1.4"
authors = ["trivernis <trivernis@gmail.com>"]
edition = "2018"
license-file = "LICENSE"

@ -110,7 +110,7 @@ impl BDFWriter {
return Err(Error::new(ErrorKind::Other, "the head has already been written"))
}
self.metadata.entries_per_chunk = number;
self.metadata.chunk_count = (self.metadata.entry_count as f64 / number as f64).ceil() as u32;
Ok(())
}
}

Loading…
Cancel
Save