a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/ucscRetroInfo.c src/hg/lib/ucscRetroInfo.c
index a974705..5724f90 100644
--- src/hg/lib/ucscRetroInfo.c
+++ src/hg/lib/ucscRetroInfo.c
@@ -1,26 +1,25 @@
 /* ucscRetroInfo.c was originally generated by the autoSql program, which also 
  * generated ucscRetroInfo.h and ucscRetroInfo.sql.  This module links the database and
  * the RAM representation of objects. */
 
 #include "common.h"
 #include "linefile.h"
 #include "dystring.h"
 #include "jksql.h"
 #include "ucscRetroInfo.h"
 
-static char const rcsid[] = "$Id:$";
 
 struct ucscRetroInfo *ucscRetroInfoLoadByQuery(struct sqlConnection *conn, char *query)
 /* Load all ucscRetroInfo from table that satisfy the query given.  
  * Where query is of the form 'select * from example where something=something'
  * or 'select example.* from example, anotherTable where example.something = 
  * anotherTable.something'.
  * Dispose of this with ucscRetroInfoFreeList(). */
 {
 struct ucscRetroInfo *list = NULL, *el;
 struct sqlResult *sr;
 char **row;
 
 sr = sqlGetResult(conn, query);
 while ((row = sqlNextRow(sr)) != NULL)
     {