diff options
Diffstat (limited to 'shell/random.c')
-rw-r--r-- | shell/random.c | 12 |
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) | |||
46 | * Choices for a,b,c: 10,13,10; 8,9,22; 2,7,3; 23,3,24 | 46 | * Choices for a,b,c: 10,13,10; 8,9,22; 2,7,3; 23,3,24 |
47 | * (given by algorithm author) | 47 | * (given by algorithm author) |
48 | */ | 48 | */ |
49 | enum { | 49 | enum { |
50 | a = 2, | 50 | a = 2, |
51 | b = 7, | 51 | b = 7, |
52 | c = 3, | 52 | c = 3, |
53 | }; | 53 | }; |
54 | 54 | ||
55 | uint32_t t; | 55 | uint32_t t; |
56 | 56 | ||
@@ -154,7 +154,7 @@ int main(int argc, char **argv) | |||
154 | write(1, buf, sizeof(buf)); | 154 | write(1, buf, sizeof(buf)); |
155 | } | 155 | } |
156 | 156 | ||
157 | return 0; | 157 | return 0; |
158 | } | 158 | } |
159 | 159 | ||
160 | #endif | 160 | #endif |