fixed some reference errors

This commit is contained in:
Yehowshua Immanuel 2022-08-19 21:13:29 -04:00
parent 15a2564f13
commit e2c02316af
4 changed files with 26 additions and 91 deletions

View file

@ -191,7 +191,7 @@ pub(super) fn parse_events<'a>(
// so that we end up storing all values
// of a particular signal in a consistent
// amount of bytes
let bytes_required = signal.bytes_required()?;
let bytes_required = Signal::bytes_required(num_bits, name)?;
while curr_num_bytes < bytes_required {
// TODO: remove once library is known to be stable