summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/random.c
diff options
context:
space:
mode:
authortylov <[email protected]>2023-07-18 02:50:44 +0200
committertylov <[email protected]>2023-07-18 02:50:44 +0200
commit177418232a2d8a8b0df1667d3e4bd15dc37db59f (patch)
treee2fb1e857295b5ca4fb691c7de1a188ac14a81d9 /misc/examples/random.c
parentda70303c149b37dbf442e41038a00836132562ee (diff)
downloadSTC-modified-177418232a2d8a8b0df1667d3e4bd15dc37db59f.tar.gz
STC-modified-177418232a2d8a8b0df1667d3e4bd15dc37db59f.zip
Final merge fixes.
Diffstat (limited to 'misc/examples/random.c')
-rw-r--r--misc/examples/random.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/examples/random.c b/misc/examples/random.c
index 63c5a306..a36b2389 100644
--- a/misc/examples/random.c
+++ b/misc/examples/random.c
@@ -4,7 +4,7 @@
int main(void)
{
- const size_t N = 10000000;
+ const int N = 10000000;
const uint64_t seed = (uint64_t)time(NULL), range = 1000000;
crand_t rng = crand_init(seed);