a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/trackLayout.c src/hg/lib/trackLayout.c
index 3299825..4e71613 100644
--- src/hg/lib/trackLayout.c
+++ src/hg/lib/trackLayout.c
@@ -1,26 +1,25 @@
 /* trackLayout - this controls the dimensions of the graphic
  * for the genome browser.  Also used for the genome view. */
 
 #include "common.h"
 #include "memgfx.h"
 #include "cart.h"
 #include "hgConfig.h"
 #include "hCommon.h"
 #include "trackLayout.h"
 
-static char const rcsid[] = "$Id: trackLayout.c,v 1.5 2010/04/22 19:35:38 kent Exp $";
 
 
 void trackLayoutSetPicWidth(struct trackLayout *tl, char *s)
 /* Set pixel width from ascii string. */
 {
 if (s != NULL && isdigit(s[0]))
     {
     tl->picWidth = atoi(s);
 #ifdef LOWELAB    
     if (tl->picWidth > 60000)
       tl->picWidth = 60000;   
 #else
     if (tl->picWidth > 5000)
       tl->picWidth = 5000;   
 #endif