Index: trunk/Ohana/src/opihi/cmd.basic/module.c
===================================================================
--- trunk/Ohana/src/opihi/cmd.basic/module.c	(revision 40546)
+++ trunk/Ohana/src/opihi/cmd.basic/module.c	(revision 40549)
@@ -23,5 +23,5 @@
   /* search for requested file in MODULES:0 - MODULES:n */
   for (i = 0; i < Nmodules; i++) {
-    snprintf (modname, 16, "MODULES:%d", i);
+    snprintf_nowarn (modname, 16, "MODULES:%d", i);
     modpath = get_variable (modname);
     if (modpath == NULL) {
Index: trunk/Ohana/src/opihi/cmd.data/imspline_apply.c
===================================================================
--- trunk/Ohana/src/opihi/cmd.data/imspline_apply.c	(revision 40546)
+++ trunk/Ohana/src/opihi/cmd.data/imspline_apply.c	(revision 40549)
@@ -47,7 +47,7 @@
   gfits_create_matrix (&out[0].header, &out[0].matrix);
   if ((y1[0].file[0] != '*') && (y1[0].file[0] != '(')) {
-    sprintf (out[0].file, "*%s", y1[0].file);
+    snprintf_nowarn (out[0].file, OPIHI_NAME_SIZE, "*%s", y1[0].file);
   } else {
-    sprintf (out[0].file, "%s", y1[0].file);
+    snprintf_nowarn (out[0].file, OPIHI_NAME_SIZE, "%s", y1[0].file);
   }
 
Index: trunk/Ohana/src/opihi/cmd.data/imspline_construct.c
===================================================================
--- trunk/Ohana/src/opihi/cmd.data/imspline_construct.c	(revision 40546)
+++ trunk/Ohana/src/opihi/cmd.data/imspline_construct.c	(revision 40549)
@@ -19,7 +19,7 @@
   free (out[0].matrix.buffer);
   if ((in[0].file[0] != '*') && (in[0].file[0] != '(')) {
-    sprintf (out[0].file, "*%s", in[0].file);
+    snprintf_nowarn (out[0].file, OPIHI_NAME_SIZE, "*%s", in[0].file);
   } else {
-    sprintf (out[0].file, "%s", in[0].file);
+    snprintf_nowarn (out[0].file, OPIHI_NAME_SIZE, "%s", in[0].file);
   }
   out[0].bitpix = in[0].bitpix;
Index: trunk/Ohana/src/opihi/dvo/dvo_host_utils.c
===================================================================
--- trunk/Ohana/src/opihi/dvo/dvo_host_utils.c	(revision 40546)
+++ trunk/Ohana/src/opihi/dvo/dvo_host_utils.c	(revision 40549)
@@ -13,5 +13,5 @@
   int TIME = time(NULL);
   int PID = getpid();
-  snprintf (uniquer, 12, "%05d.%05d", PID, TIME % 100000);
+  snprintf_nowarn (uniquer, 12, "%05d.%05d", PID, TIME % 100000);
 
   // write the dvo comment (host independent)
