summaryrefslogtreecommitdiffstats
path: root/usr.bin/jot/jot.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/jot/jot.c')
-rw-r--r--usr.bin/jot/jot.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/jot/jot.c b/usr.bin/jot/jot.c
index 2e58968..2e33d41 100644
--- a/usr.bin/jot/jot.c
+++ b/usr.bin/jot/jot.c
@@ -101,13 +101,13 @@ main(int argc, char **argv)
int ch;
int mask = 0;
int n = 0;
- double begin;
+ double begin = BEGIN_DEF;
double divisor;
- double ender;
- double s;
+ double ender = ENDER_DEF;
+ double s = STEP_DEF;
double x, y;
long i;
- long reps;
+ long reps = REPS_DEF;
while ((ch = getopt(argc, argv, "b:cnp:rs:w:")) != -1)
switch (ch) {
OpenPOWER on IntegriCloud