2004-09-06 Paul Jakma <paul@dishone.st>

	* test-buffer.c: include memory.h
          (main) call memory_init().
diff --git a/tests/ChangeLog b/tests/ChangeLog
index 906fd11..f6ed4d5 100644
--- a/tests/ChangeLog
+++ b/tests/ChangeLog
@@ -1,3 +1,8 @@
+2004-09-06 Paul Jakma <paul@dishone.st>
+
+	* test-buffer.c: include memory.h
+          (main) call memory_init().
+	
 2004-09-05 Paul Jakma <paul@dishone.st>
 
 	* heavy-wq.c: (slow_func_del,slow_func_err) make them take
diff --git a/tests/test-buffer.c b/tests/test-buffer.c
index 11e3629..b310776 100644
--- a/tests/test-buffer.c
+++ b/tests/test-buffer.c
@@ -1,4 +1,5 @@
 #include <zebra.h>
+#include <memory.h>
 #include <buffer.h>
 
 struct thread_master *master;
@@ -11,6 +12,8 @@
   char junk[3];
   char c = 'a';
 
+  memory_init();
+  
   if ((argc != 2) || (sscanf(argv[1], "%d%1s", &n, junk) != 1))
     {
       fprintf(stderr, "Usage: %s <number of chars to simulate>\n", *argv);