summaryrefslogtreecommitdiff
path: root/extmod/modurandom.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2020-03-27 00:35:04 +1100
committerDamien George <damien.p.george@gmail.com>2020-03-28 23:36:44 +1100
commit1a3e386c67e03a79eb768cb6e9f6777e002d6660 (patch)
tree7e0b0620744e738bb281eb1c032b21a53558b8c0 /extmod/modurandom.c
parentb56caaf104a196902efb23f324f7e290c6f3d291 (diff)
all: Remove spaces inside and around parenthesis.
Using new options enabled in the uncrustify configuration.
Diffstat (limited to 'extmod/modurandom.c')
-rw-r--r--extmod/modurandom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extmod/modurandom.c b/extmod/modurandom.c
index 594848dfe..c547339e2 100644
--- a/extmod/modurandom.c
+++ b/extmod/modurandom.c
@@ -46,7 +46,7 @@ STATIC uint32_t yasmarang(void) {
yasmarang_pad = (yasmarang_pad << 3) + (yasmarang_pad >> 29);
yasmarang_n = yasmarang_pad | 2;
yasmarang_d ^= (yasmarang_pad << 31) + (yasmarang_pad >> 1);
- yasmarang_dat ^= (char) yasmarang_pad ^ (yasmarang_d >> 8) ^ 1;
+ yasmarang_dat ^= (char)yasmarang_pad ^ (yasmarang_d >> 8) ^ 1;
return yasmarang_pad ^ (yasmarang_d << 5) ^ (yasmarang_pad >> 18) ^ (yasmarang_dat << 1);
} /* yasmarang */