72760d1290cbbdf11958ae2ae7f1bc73b19edd6e braney Wed Aug 29 11:15:17 2012 -0700 took out a superfluous external declaration via code review (#8945) diff --git src/utils/bigBedInfo/bigBedInfo.c src/utils/bigBedInfo/bigBedInfo.c index 12ac39c..696dbb7 100644 --- src/utils/bigBedInfo/bigBedInfo.c +++ src/utils/bigBedInfo/bigBedInfo.c @@ -53,31 +53,30 @@ if (bbi->levelList != NULL) { long long indexEnd = bbi->levelList->dataOffset; printLabelAndLongNumber("primaryIndexSize", indexEnd - bbi->unzoomedIndexOffset); } struct bbiChromInfo *chrom, *chromList = bbiChromList(bbi); printf("zoomLevels: %d\n", bbi->zoomLevels); if (optionExists("zooms")) { struct bbiZoomLevel *zoom; for (zoom = bbi->levelList; zoom != NULL; zoom = zoom->next) { printf("\t%d\t%d\n", zoom->reductionLevel, (int)(zoom->indexOffset - zoom->dataOffset)); for (chrom=chromList; chrom != NULL; chrom = chrom->next) { - extern struct bbiSummary *bbiSummariesInRegion(struct bbiZoomLevel *zoom, struct bbiFile *bbi, int chromId, bits32 start, bits32 end); struct bbiSummary *sum, *sumList = bbiSummariesInRegion(zoom, bbi, chrom->id,0, chrom->size); for (sum = sumList; sum != NULL; sum = sum->next) { printf("\t\t%s:%d-%d\n",chrom->name, sum->start, sum->end); } } } } printf("chromCount: %d\n", slCount(chromList)); if (optionExists("chroms")) for (chrom=chromList; chrom != NULL; chrom = chrom->next) printf("\t%s %d %d\n", chrom->name, chrom->id, chrom->size); if (optionExists("as"))