From e9549fc27653ea1b3477df4090e58596a0bbfe6c Mon Sep 17 00:00:00 2001 From: dds Date: Mon, 6 Nov 2006 09:15:21 +0000 Subject: [PATCH] Replace obscure aliases through pointers with plain variables. MFC after: 2 weeks --- usr.bin/jot/jot.c | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/usr.bin/jot/jot.c b/usr.bin/jot/jot.c index c2b001bcaf59..70003cf4527b 100644 --- a/usr.bin/jot/jot.c +++ b/usr.bin/jot/jot.c @@ -97,11 +97,8 @@ static void usage(void); int main(int argc, char **argv) { - double xd, yd; - long id; - double *x = &xd; - double *y = &yd; - long *i = &id; + double x, y; + long i; unsigned int mask = 0; int n = 0; int ch; @@ -259,15 +256,15 @@ main(int argc, char **argv) if (reps == 0) infinity = 1; if (randomize) { - *x = (ender - begin) * (ender > begin ? 1 : -1); - for (*i = 1; *i <= reps || infinity; (*i)++) { - *y = arc4random() / ((double)UINT32_MAX + 1); - if (putdata(*y * *x + begin, reps - *i)) + x = (ender - begin) * (ender > begin ? 1 : -1); + for (i = 1; i <= reps || infinity; i++) { + y = arc4random() / ((double)UINT32_MAX + 1); + if (putdata(y * x + begin, reps - i)) errx(1, "range error in conversion"); } } else - for (*i = 1, *x = begin; *i <= reps || infinity; (*i)++, *x += s) - if (putdata(*x, reps - *i)) + for (i = 1, x = begin; i <= reps || infinity; i++, x += s) + if (putdata(x, reps - i)) errx(1, "range error in conversion"); if (!nofinalnl) putchar('\n');