Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsteele committed Dec 26, 2022
1 parent 3c39bdc commit f216f77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/image.rs
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ impl IconImage {
}

debug_assert_eq!(data.len(), data_size);
Ok((num_colors as u8, bits_per_pixel as u16, data))
Ok((num_colors as u8, bits_per_pixel, data))
}

/// Returns the width of the image, in pixels.
Expand Down

0 comments on commit f216f77

Please sign in to comment.