b628d00ccd476a359703665d0242467fba854425
ceisenhart
  Wed Jun 4 16:22:06 2014 -0700
stylistic changes
diff --git src/utils/bamToFastq/bamToFastq.c src/utils/bamToFastq/bamToFastq.c
index a694bf3..4854860 100644
--- src/utils/bamToFastq/bamToFastq.c
+++ src/utils/bamToFastq/bamToFastq.c
@@ -4,32 +4,30 @@
  * See README in this or parent directory for licensing information. */
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "options.h"
 #include "bamFile.h"
 #include "fq.h"
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "bamToFastq - Converts a bam file to fastq format.\n"
   "usage:\n"
   "   bamToFastq input.bam output.fastq\n"
-  "options:\n"
-  "   "
   );
 }
 
 /* Command line validation table. */
 static struct optionSpec options[] = {
    {NULL, 0},
 };
 
 void fixQuality(struct fq *seq)
 /* The bam quality reader returns a format that is not fastq. */
 /* This function updates the bam quality to a fastq quality. */
 {
 int size = strlen(seq->dna);
 int i = 0;
 for (i = 0; i < size; ++i)