Index: /trunk/Ohana/src/opihi/mana/init.c
===================================================================
--- /trunk/Ohana/src/opihi/mana/init.c	(revision 16447)
+++ /trunk/Ohana/src/opihi/mana/init.c	(revision 16448)
@@ -8,9 +8,9 @@
 
 static Command cmds[] = {  
-  {"findpeaks",   findpeaks,    "find image peaks"},
-  {"fitcontour",  fitcontour,   "fit ellipse contour"},
-  {"starcontour", starcontour,  "object contour"},
-  {"rawstars",    rawstars,     "find raw star stats"},
-  {"version",     version,      "show version information"},
+  {1, "findpeaks",   findpeaks,    "find image peaks"},
+  {1, "fitcontour",  fitcontour,   "fit ellipse contour"},
+  {1, "starcontour", starcontour,  "object contour"},
+  {1, "rawstars",    rawstars,     "find raw star stats"},
+  {1, "version",     version,      "show version information"},
 }; 
 
@@ -24,2 +24,5 @@
 
 }
+
+void FreeMana () {
+}
Index: /trunk/Ohana/src/opihi/mana/mana.c.in
===================================================================
--- /trunk/Ohana/src/opihi/mana/mana.c.in	(revision 16447)
+++ /trunk/Ohana/src/opihi/mana/mana.c.in	(revision 16448)
@@ -52,4 +52,11 @@
 void cleanup () {
   QuitKapa ();
+  ConfigFree ();
+  
+  FreeBasic ();
+  FreeData ();
+  FreeAstro ();
+  FreeMana ();
+
   return;
 }
