summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usr.bin/ministat/ministat.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.bin/ministat/ministat.c b/usr.bin/ministat/ministat.c
index 5873ca7..720922e 100644
--- a/usr.bin/ministat/ministat.c
+++ b/usr.bin/ministat/ministat.c
@@ -136,7 +136,7 @@ struct dataset {
double *points;
unsigned lpoints;
double sy, syy;
- int n;
+ unsigned n;
};
static struct dataset *
@@ -191,8 +191,6 @@ Avg(struct dataset *ds)
static double
Median(struct dataset *ds)
{
- int even, i;
- struct point *p1, *p2;
return (ds->points[ds->n / 2]);
}
@@ -317,8 +315,8 @@ static void
PlotSet(struct dataset *ds, int val)
{
struct plot *pl;
- struct point *pp;
- int i, j, m, x, n;
+ int i, j, m, x;
+ unsigned n;
int bar;
pl = &plot;
OpenPOWER on IntegriCloud