a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/hgc/dbRIP.c src/hg/hgc/dbRIP.c
index 9f050a4..4539c32 100644
--- src/hg/hgc/dbRIP.c
+++ src/hg/hgc/dbRIP.c
@@ -1,29 +1,28 @@
 /* Handle details pages for dbRIP tracks. */
 
 #include "common.h"
 #include "hash.h"
 #include "linefile.h"
 #include "hgc.h"
 #include "hui.h"
 #include "obscure.h"
 #include "cheapcgi.h"
 #include "htmshell.h"
 #include "dbRIP.h"
 #include "polyGenotype.h"
 
-static char const rcsid[] = "$Id: dbRIP.c,v 1.9 2010/05/11 01:43:28 kent Exp $";
 
 
 static int sortEthnicGroup(const void *e1, const void *e2)
 /* used by slSort to sort the polyGenotype in order of ethnic group name */
 {
 const struct polyGenotype *p1 = *((struct polyGenotype**)e1);
 const struct polyGenotype *p2 = *((struct polyGenotype**)e2);
 return(strcmp(p1->ethnicGroup, p2->ethnicGroup));
 }
 
 static void polyTable(char *name)
 {
 struct sqlConnection *conn = hAllocConn(database);
 char query[256];
 struct sqlResult *sr;