Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e4f2eb28 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix clippy::ptr-arg lint" into main am: d925ec65 am: 84a29f48

parents ae4c6cb6 84a29f48
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -120,7 +120,7 @@ fn print_device_description(
    fn print_in_8_byte_chunks(
    fn print_in_8_byte_chunks(
        output: &mut impl Write,
        output: &mut impl Write,
        prefix: &str,
        prefix: &str,
        data: &Vec<u8>,
        data: &[u8],
    ) -> Result<(), io::Error> {
    ) -> Result<(), io::Error> {
        for (i, byte) in data.iter().enumerate() {
        for (i, byte) in data.iter().enumerate() {
            if i % 8 == 0 {
            if i % 8 == 0 {