a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/genePix.c src/hg/lib/genePix.c index 39183bc..42a9dc3 100644 --- src/hg/lib/genePix.c +++ src/hg/lib/genePix.c @@ -1,24 +1,23 @@ /* genePix.c - Interface to genePix database. */ #include "common.h" #include "hash.h" #include "dystring.h" #include "jksql.h" #include "genePix.h" -static char const rcsid[] = "$Id: genePix.c,v 1.4 2008/09/17 18:10:13 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); } static char *somePath(struct sqlConnection *conn, int id, char *locationField) /* Fill in path based on given location field */ { char query[256], path[PATH_LEN]; struct sqlResult *sr; char **row;