a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/hgTables/sumStats.c src/hg/hgTables/sumStats.c
index f497052..8e9f074 100644
--- src/hg/hgTables/sumStats.c
+++ src/hg/hgTables/sumStats.c
@@ -10,31 +10,30 @@
 #include "jksql.h"
 #include "hdb.h"
 #include "web.h"
 #include "hui.h"
 #include "hdb.h"
 #include "bits.h"
 #include "trackDb.h"
 #include "customTrack.h"
 #include "hgSeq.h"
 #include "agpGap.h"
 #include "portable.h"
 #include "botDelay.h"
 #include "hgTables.h"
 #include "wikiTrack.h"
 
-static char const rcsid[] = "$Id: sumStats.c,v 1.29 2010/06/03 18:54:00 kent Exp $";
 
 long long basesInRegion(struct region *regionList, int limit)
 /* Count up all bases in regions to limit number of regions, 0 == no limit */
 {
 long long total = 0;
 struct region *region;
 int regionCount = 0;
 
 for (region = regionList;
 	(region != NULL) && (!(limit && (regionCount >= limit)));
 	    region = region->next, ++regionCount)
     {
     total += region->end - region->start;
     }
 return total;