Skip to content

Commit 906b799

Browse files
committed
fix more
1 parent a12c20d commit 906b799

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

crates/stdlib/src/lzma.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ mod _lzma {
201201

202202
impl DecompressStatus for Status {
203203
fn is_stream_end(&self) -> bool {
204-
*self == Status::StreamEnd
204+
*self == Self::StreamEnd
205205
}
206206
}
207207

@@ -671,16 +671,16 @@ mod _lzma {
671671
}
672672

673673
impl CompressStatusKind for Status {
674-
const EOF: Self = Status::StreamEnd;
674+
const EOF: Self = Self::StreamEnd;
675675

676676
fn to_usize(self) -> usize {
677677
self as usize
678678
}
679679
}
680680

681681
impl CompressFlushKind for Action {
682-
const NONE: Self = Action::Run;
683-
const FINISH: Self = Action::Finish;
682+
const NONE: Self = Self::Run;
683+
const FINISH: Self = Self::Finish;
684684

685685
fn to_usize(self) -> usize {
686686
self as usize

0 commit comments

Comments
 (0)