aboutsummaryrefslogtreecommitdiff
path: root/shell/random.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-07-17 15:04:17 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2018-07-17 15:04:17 +0200
commit4c201c00a3650cdacad5fc098ca255416687fb0f (patch)
treefdebcdd9a9a39eee729c45f17d92d042c2adf3f7 /shell/random.c
parent0d2e0de42bab54c31ba37f1c6fd10dcdc7008ccf (diff)
downloadbusybox-4c201c00a3650cdacad5fc098ca255416687fb0f.tar.gz
whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/random.c')
-rw-r--r--shell/random.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/random.c b/shell/random.c
index 5d3620516..56c7c5a3c 100644
--- a/shell/random.c
+++ b/shell/random.c
@@ -46,11 +46,11 @@ next_random(random_t *rnd)
* Choices for a,b,c: 10,13,10; 8,9,22; 2,7,3; 23,3,24
* (given by algorithm author)
*/
- enum {
- a = 2,
- b = 7,
- c = 3,
- };
+ enum {
+ a = 2,
+ b = 7,
+ c = 3,
+ };
uint32_t t;
@@ -154,7 +154,7 @@ int main(int argc, char **argv)
write(1, buf, sizeof(buf));
}
- return 0;
+ return 0;
}
#endif