src/hg/hgTables/compositeTrack.c 1.16
1.16 2009/04/16 18:34:06 angie
64 bytes is no longer big enough to accomodate <tableName>_sel with the giant wgEncode table names.
Index: src/hg/hgTables/compositeTrack.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgTables/compositeTrack.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -b -B -U 4 -r1.15 -r1.16
--- src/hg/hgTables/compositeTrack.c 14 Apr 2009 14:19:52 -0000 1.15
+++ src/hg/hgTables/compositeTrack.c 16 Apr 2009 18:34:06 -0000 1.16
@@ -60,9 +60,9 @@
boolean isSubtrackMerged(char *tableName)
/* Return true if tableName has been selected for subtrack merge. */
{
-char option[64];
+char option[128];
safef(option, sizeof(option), "%s_sel", tableName);
return cartUsualBoolean(cart, option, FALSE);
}