Index: trunk/Ohana/src/imregister/imreg/modify.c
===================================================================
--- trunk/Ohana/src/imregister/imreg/modify.c	(revision 70)
+++ trunk/Ohana/src/imregister/imreg/modify.c	(revision 74)
@@ -34,5 +34,5 @@
 
     if (output.mef2split) {
-      if (image[i].mode == MODE_MEF) {
+      if (image[i].mode == M_MEF) {
 	root = filerootname (image[i].filename);
 	ext = fileextname (image[i].filename);
@@ -41,5 +41,5 @@
 	snprintf (image[i].pathname, 128, "%s/%s", path, root);
 	snprintf (image[i].filename, 64,  "%s%02d.%s", root, image[i].ccd, ext);
-	image[i].mode = MODE_SPLIT;
+	image[i].mode = M_SPLIT;
 	free (root);
 	free (ext);
@@ -49,5 +49,5 @@
 
     if (output.split2mef) {
-      if (image[i].mode == MODE_SPLIT) {
+      if (image[i].mode == M_SPLIT) {
 	ext  = fileextname (image[i].filename);
 	root = filebasename (image[i].pathname);
@@ -56,5 +56,5 @@
 	snprintf (image[i].pathname, 128, "%s", path);
 	snprintf (image[i].filename, 64,  "%s.%s", root, ext);
-	image[i].mode = MODE_MEF;
+	image[i].mode = M_MEF;
 	free (root);
 	free (ext);
