diff options
Diffstat (limited to 'wpa-psk/src')
| -rw-r--r-- | wpa-psk/src/lib.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/wpa-psk/src/lib.rs b/wpa-psk/src/lib.rs index 5acf8e5..db114ab 100644 --- a/wpa-psk/src/lib.rs +++ b/wpa-psk/src/lib.rs @@ -156,7 +156,7 @@ pub fn wpa_psk_unchecked(ssid: &[u8], passphrase: &[u8]) -> [u8; 32] {  /// Returns the hexdecimal representation of the given bytes.  pub fn bytes_to_hex(bytes: &[u8]) -> String { -    bytes.iter().map(|b| format!("{:02x}", b)).collect() +    bytes.iter().map(|b| format!("{b:02x}")).collect()  }  #[cfg(test)]  |