mirror of
https://github.com/apache/nuttx.git
synced 2026-06-04 14:53:47 +08:00
Fix the coding style and typo issue
Signed-off-by: anjiahao <anjiahao@xiaomi.com> Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
committed by
Masayuki Ishikawa
parent
d07792a343
commit
a4563b8744
@@ -45,8 +45,8 @@
|
||||
# define MIN(a,b) ((a) < (b) ? (a) : (b))
|
||||
#endif
|
||||
|
||||
#define ROTL_32(x,n) ( ((x) << (n)) | ((x) >> (32-(n))) )
|
||||
#define ROTR_32(x,n) ( ((x) >> (n)) | ((x) << (32-(n))) )
|
||||
#define ROTL_32(x,n) (((x) << (n)) | ((x) >> (32 - (n))))
|
||||
#define ROTR_32(x,n) (((x) >> (n)) | ((x) << (32 - (n))))
|
||||
|
||||
/****************************************************************************
|
||||
* Private Function Prototypes
|
||||
|
||||
Reference in New Issue
Block a user