1
0
Fork 0
forked from wry/wry

all: fix clippy lints

This commit is contained in:
Julian Orth 2022-11-03 19:26:35 +01:00
parent 729e47a756
commit e61d6ab074
4 changed files with 6 additions and 6 deletions

View file

@ -43,11 +43,11 @@ static PW_FORMATS_MAP: Lazy<AHashMap<SpaVideoFormat, &'static Format>> = Lazy::n
});
pub fn formats() -> &'static AHashMap<u32, &'static Format> {
&*FORMATS_MAP
&FORMATS_MAP
}
pub fn pw_formats() -> &'static AHashMap<SpaVideoFormat, &'static Format> {
&*PW_FORMATS_MAP
&PW_FORMATS_MAP
}
const fn fourcc_code(a: char, b: char, c: char, d: char) -> u32 {