Skip to content

Commit 8a0cbd4

Browse files
authored
Merge pull request #98 from hnez/cargo-clippy-2025-08-08
ui: buttons: fix clippy warning about confusing lifetimes
2 parents f8bf928 + aaf5e08 commit 8a0cbd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/buttons.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ mod evd {
3838
Ok(Self {})
3939
}
4040

41-
pub fn fetch_events(&mut self) -> Result<FetchEventsSynced, ()> {
41+
pub fn fetch_events(&mut self) -> Result<FetchEventsSynced<'_>, ()> {
4242
loop {
4343
std::thread::park()
4444
}

0 commit comments

Comments
 (0)