Skip to content

Commit

Permalink
style(clippy): fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
paolobarbolini committed Oct 26, 2024
1 parent 2496219 commit d3e1988
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/riff.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use crate::util::{read_checked, read_u8_len4_array, split_to_checked};
use crate::{Error, Result};

// the 4 bytes signature
const SIGNATURE: &[u8] = &[b'R', b'I', b'F', b'F'];
const SIGNATURE: &[u8] = b"RIFF";

/// The representation of a RIFF chunk
#[derive(Clone, PartialEq)]
Expand Down

0 comments on commit d3e1988

Please sign in to comment.