61dc7885a5f1001e2bc189501379088f2b53379d galt Mon Feb 23 15:42:36 2026 -0800 fixes things found automated codereview. for bigBedCmdSupport lib moved slAddHead, removed stray debugmsg and fixed comment and added static keyword. fixed bigChainToChain chromFound = FALSE, removed stray test makefile, fixed existing typo "tines", and added a missing space after issing space before optionMultiVal(). refs #37146 diff --git src/hg/utils/bigMafToMaf/bigMafToMaf.c src/hg/utils/bigMafToMaf/bigMafToMaf.c index d9117bea71f..90c0847d0ed 100644 --- src/hg/utils/bigMafToMaf/bigMafToMaf.c +++ src/hg/utils/bigMafToMaf/bigMafToMaf.c @@ -65,31 +65,31 @@ { for(; *ptr; ptr++) { if (*ptr == ';') fputc('\n', f); else fputc(*ptr, f); } fputc('\n', f); } static void processChromChunk(struct bbiFile *bbi, char *chrom, int start, int end, char *bedName, FILE *f) /* Output one chunk. Only blocks where start is in the range will be written - * to avoid outputting a block multiple tines. */ + * to avoid outputting a block multiple times. */ { struct bigBedInterval *bbList = bigBedIntervalQuery(bbi, chrom, start, end, 0, lm); for(; bbList; bbList = bbList->next) { if ((start <= bbList->start) && (bbList->start < end)) writeMafAli(bbList->rest, f); } } void processChrom(struct bbiFile *bbi, struct bbiChromInfo *chrom, FILE *f) /* output MAF blocks from one chrom */ { int start = 0, end = chrom->size;