Skip to content

Commit

Permalink
Change OutputId::get() to return u64
Browse files Browse the repository at this point in the history
  • Loading branch information
YaLTeR committed Aug 31, 2024
1 parent 458575e commit 40dbf83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backend/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ impl OutputId {
OutputId(OUTPUT_ID_COUNTER.next())
}

pub fn get(self) -> u32 {
self.0
pub fn get(self) -> u64 {
u64::from(self.0)
}
}

Expand Down

0 comments on commit 40dbf83

Please sign in to comment.