a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/hg/lib/visiGene.c src/hg/lib/visiGene.c
index d5c150d..25b234e 100644
--- src/hg/lib/visiGene.c
+++ src/hg/lib/visiGene.c
@@ -1,24 +1,23 @@
 /* visiGene.c  - Interface to visiGene database. */
 
 #include "common.h"
 #include "hash.h"
 #include "dystring.h"
 #include "jksql.h"
 #include "visiGene.h"
 
-static char const rcsid[] = "$Id: visiGene.c,v 1.18 2008/09/17 18:10:14 kent Exp $";
 
 static char *cloneOrNull(char *s)
 /* Return copy of string, or NULL if it is empty */
 {
 if (s == NULL || s[0] == 0)
     return NULL;
 return cloneString(s);
 }
 
 int visiGeneImageFile(struct sqlConnection *conn, int id)
 /* Return image file ID associated with image ID.  A file
  * con contain multiple images. */
 {
 char query[256];
 safef(query, sizeof(query), "select imageFile from image where id=%d",