From 197d80edbfc89ef7d72be20b90920b2fbb39961c Mon Sep 17 00:00:00 2001 From: Sasha Hilton Date: Sun, 25 Feb 2018 16:33:32 +0100 Subject: [PATCH] Fix formatting --- core/src/spotify_id.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/spotify_id.rs b/core/src/spotify_id.rs index 2169ee6f..314708e8 100644 --- a/core/src/spotify_id.rs +++ b/core/src/spotify_id.rs @@ -50,7 +50,7 @@ impl SpotifyId { pub fn from_raw(data: &[u8]) -> Result { if data.len() != 16 { - return Err(SpotifyIdError) + return Err(SpotifyIdError); }; let high = BigEndian::read_u64(&data[0..8]);