a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/joiner.c src/hg/lib/joiner.c index ec0a986..b0023e0 100644 --- src/hg/lib/joiner.c +++ src/hg/lib/joiner.c @@ -8,31 +8,30 @@ * The main routines you'll want to use here are * joinerRead - to read in a joiner file * joinerRelate - to get list of possible joins given a table. */ #include "common.h" #include "linefile.h" #include "hash.h" #include "dystring.h" #include "obscure.h" #include "jksql.h" #include "hdb.h" #include "joiner.h" -static char const rcsid[] = "$Id: joiner.c,v 1.28 2009/02/11 18:49:44 angie Exp $"; static void joinerFieldFree(struct joinerField **pJf) /* Free up memory associated with joinerField. */ { struct joinerField *jf = *pJf; if (jf != NULL) { slFreeList(&jf->dbList); freeMem(jf->table); freeMem(jf->field); slFreeList(&jf->chopBefore); slFreeList(&jf->chopAfter); freeMem(jf->separator); freeMem(jf->splitPrefix); slFreeList(&jf->exclude);