4bdf667d97956ba22278152ffff7eeff7a095a11
angie
  Tue May 15 11:08:26 2018 -0700
Fix compiler warning about printf too few args -- doesn't affect top-level build.

diff --git src/oneShot/testBandExt/testBandExt.c src/oneShot/testBandExt/testBandExt.c
index 366df17..6ad1bca 100644
--- src/oneShot/testBandExt/testBandExt.c
+++ src/oneShot/testBandExt/testBandExt.c
@@ -7,32 +7,32 @@
 #include "fa.h"
 #include "axt.h"
 #include "bandExt.h"
 
 int maxInsert = 100;
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "testBandExt - Test band extension\n"
   "usage:\n"
   "   testBandExt a.fa b.fa\n"
   "options:\n"
   "   -maxInsert=%d - Control maximum insert size allowed\n"
-  "   -gapOpen=%d - Set gap open penalty\n"
-  "   -gapExtend=%d - Set gap extension penalty\n"
+  "   -gapOpen=N - Set gap open penalty\n"
+  "   -gapExtend=N - Set gap extension penalty\n"
   , maxInsert
   );
 }
 
 static struct optionSpec options[] = {
    {"maxInsert", OPTION_INT},
    {"gapOpen", OPTION_INT},
    {"gapExtend", OPTION_INT},
    {NULL, 0},
 };
 
 void testBandExt(char *aName, char *bName)
 /* testBandExt - Test band extension. */
 {
 struct dnaSeq *aSeq = faReadAllMixed(aName);