diff options
Diffstat (limited to 'audio/src/program.rs')
| -rw-r--r-- | audio/src/program.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/src/program.rs b/audio/src/program.rs index cd050e3..efda90b 100644 --- a/audio/src/program.rs +++ b/audio/src/program.rs @@ -246,6 +246,6 @@ impl PartialOrd for Program { } impl Ord for Program { fn cmp(&self, other: &Self) -> std::cmp::Ordering { - other.priority.cmp(&self.priority) + self.priority.cmp(&other.priority) } } |