[git commit master 1/1] whitespace fix

Denys Vlasenko vda.linux at googlemail.com
Sat Oct 16 21:39:43 UTC 2010


commit: http://git.busybox.net/busybox/commit/?id=446c2349b608fc4e25ac5846f4491bfa389330a6
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 libbb/sha1.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libbb/sha1.c b/libbb/sha1.c
index 7e9b37d..6d2f884 100644
--- a/libbb/sha1.c
+++ b/libbb/sha1.c
@@ -38,18 +38,18 @@
 //#define rotl32(x,n) (((x) << (n)) | ((x) >> (32 - (n))))
 static ALWAYS_INLINE uint32_t rotl32(uint32_t x, unsigned n)
 {
-        return (x << n) | (x >> (32 - n));
+	return (x << n) | (x >> (32 - n));
 }
 //#define rotr32(x,n) (((x) >> (n)) | ((x) << (32 - (n))))
 static ALWAYS_INLINE uint32_t rotr32(uint32_t x, unsigned n)
 {
-        return (x >> n) | (x << (32 - n));
+	return (x >> n) | (x << (32 - n));
 }
 /* rotr64 in needed for sha512 only: */
 //#define rotr64(x,n) (((x) >> (n)) | ((x) << (64 - (n))))
 static ALWAYS_INLINE uint64_t rotr64(uint64_t x, unsigned n)
 {
-        return (x >> n) | (x << (64 - n));
+	return (x >> n) | (x << (64 - n));
 }
 #if BB_LITTLE_ENDIAN
 /* ALWAYS_INLINE below would hurt code size, using plain inline: */
-- 
1.7.1



More information about the busybox-cvs mailing list