src/hg/lib/hui.c 1.210
1.210 2009/06/10 23:27:08 tdreszer
Yale's many subtracks outgrew the 8 bit counter that I was using
Index: src/hg/lib/hui.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/lib/hui.c,v
retrieving revision 1.209
retrieving revision 1.210
diff -b -B -U 4 -r1.209 -r1.210
--- src/hg/lib/hui.c 10 Jun 2009 04:42:29 -0000 1.209
+++ src/hg/lib/hui.c 10 Jun 2009 23:27:08 -0000 1.210
@@ -4676,10 +4676,10 @@
char *value;
int sizeOfX = dimensionX?dimensionX->count:1;
int sizeOfY = dimensionY?dimensionY->count:1;
int sizeOfZ = dimensionZ?dimensionZ->count:1;
-char cells[sizeOfX][sizeOfY]; // There needs to be atleast one element in dimension
-char cellsZ[sizeOfX]; // The Z dimension is a separate 1D matrix
+int cells[sizeOfX][sizeOfY]; // There needs to be atleast one element in dimension
+int cellsZ[sizeOfX]; // The Z dimension is a separate 1D matrix
struct trackDb *tdbsX[sizeOfX]; // Representative subtracks
struct trackDb *tdbsY[sizeOfY];
struct trackDb *tdbsZ[sizeOfZ];
memset(cells, 0, sizeof(cells));