From 2e0fd6b4c3050b7765ca05851c99123e1e74856e Mon Sep 17 00:00:00 2001 From: ache Date: Mon, 11 Aug 2008 23:24:42 +0000 Subject: Suggections from bde@ 1) Split too long source lines 2) Portable code should not assume that null pointer == all-bits-0, so back out prev. calloc() change. Submitted by: bde --- games/random/random.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'games/random/random.c') diff --git a/games/random/random.c b/games/random/random.c index 2580348..c1be97b 100644 --- a/games/random/random.c +++ b/games/random/random.c @@ -180,7 +180,8 @@ main(int argc, char *argv[]) err(2, "stdout"); /* Now see if the next line is to be printed. */ - selected = (int)(denom * random() / RANDOM_MAX_PLUS1) == 0; + selected = (int)(denom * random() / + RANDOM_MAX_PLUS1) == 0; } } if (ferror(stdin)) -- cgit v1.1