Skip to content

Commit

Permalink
Fix minor variable mixup (#854)
Browse files Browse the repository at this point in the history
  • Loading branch information
fornwall authored Mar 1, 2024
1 parent 52a0188 commit f3de611
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/host/alsa/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ fn stream_timestamp(
if nanos < 0 {
panic!(
"get_htstamp `{}.{}` was earlier than get_trigger_htstamp `{}.{}`",
ts.tv_sec, ts.tv_nsec, trigger_ts.tv_sec, ts.tv_nsec
ts.tv_sec, ts.tv_nsec, trigger_ts.tv_sec, trigger_ts.tv_nsec
);
}
Ok(crate::StreamInstant::from_nanos(nanos))
Expand Down

0 comments on commit f3de611

Please sign in to comment.