12c1425efebb7ddd968ee476054b13d721df8df8 angie Tue Dec 18 11:47:17 2012 -0800 Code Review #9844 - Hiram pointed out that localmem.h is not protectedagainst multiple inclusion; fixed. Also cleaned up some redundant inclusions of localmem.h in files that already include bbiFile.h. diff --git src/lib/bbiRead.c src/lib/bbiRead.c index 9018334..9818a36 100644 --- src/lib/bbiRead.c +++ src/lib/bbiRead.c @@ -1,23 +1,22 @@ /* bbiRead - Big Binary Indexed file. Stuff that's common between bigWig and bigBed on the * read side. */ #include "common.h" #include "linefile.h" #include "hash.h" #include "obscure.h" -#include "localmem.h" #include "zlibFace.h" #include "bPlusTree.h" #include "hmmstats.h" #include "cirTree.h" #include "udc.h" #include "bbiFile.h" struct bbiZoomLevel *bbiBestZoom(struct bbiZoomLevel *levelList, int desiredReduction) /* Return zoom level that is the closest one that is less than or equal to * desiredReduction. */ { if (desiredReduction < 0) errAbort("bad value %d for desiredReduction in bbiBestZoom", desiredReduction); if (desiredReduction <= 1) return NULL;