From 13e92bb945fc8cb1e25079402ae9a8aa50044489 Mon Sep 17 00:00:00 2001
From: Carl Worth <cworth@cworth.org>
Date: Tue, 27 Jan 2009 00:55:42 -0800
Subject: [PATCH] Change test data to go all the way to 100

This makes the value 100 appear along the X axis which just looks nicer.
---
 acre-test.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/acre-test.c b/acre-test.c
index bf1a516..31192b9 100644
--- a/acre-test.c
+++ b/acre-test.c
@@ -23,7 +23,7 @@ main (void)
 
     acre_data_set_name (data, "Acre test data");
 
-    for (i = 0; i < 100; i++)
+    for (i = 0; i <= 100; i++)
 	acre_data_add_point_2d (data, i, 100 - (i/4.0)*(i/4.0));
 
     acre_add_data (acre, data);
-- 
2.45.2