From 5e816c418b3f84221a4acf818a2640ea2c44ea6e Mon Sep 17 00:00:00 2001 From: Rhys Weatherley Date: Tue, 30 Dec 2014 07:19:27 +1000 Subject: [PATCH] Remove unnecessary "return" --- libraries/Crypto/Arcfour.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Crypto/Arcfour.cpp b/libraries/Crypto/Arcfour.cpp index a0fcdd1d..61db4bbc 100644 --- a/libraries/Crypto/Arcfour.cpp +++ b/libraries/Crypto/Arcfour.cpp @@ -154,7 +154,7 @@ void Arcfour::encrypt(uint8_t *output, const uint8_t *input, size_t len) void Arcfour::decrypt(uint8_t *output, const uint8_t *input, size_t len) { - return encrypt(output, input, len); + encrypt(output, input, len); } void Arcfour::clear()