6e5ee11ca95cd971984038cf65bae00d9c898707 galt Wed Jun 4 15:40:02 2014 -0700 Since we have git, it is easy to rename errabort.c to errAbort.c without losing any history. diff --git src/lib/meta.c src/lib/meta.c index 509d94a..26da19a 100644 --- src/lib/meta.c +++ src/lib/meta.c @@ -6,31 +6,31 @@ * meta topLevel * cellLine HELA * * meta midLevel * target H3K4Me3 * antibody abCamAntiH3k4me3 * * meta lowLevel * fileName hg19/chipSeq/helaH3k4me3.narrowPeak.bigBed * The file is interpreted so that lower level stanzas inherit tags from higher level ones. */ #include "common.h" #include "linefile.h" #include "hash.h" -#include "errabort.h" +#include "errAbort.h" #include "meta.h" #include "net.h" #include "ra.h" struct metaTagVal *metaTagValNew(char *tag, char *val) /* Create new meta tag/val */ { struct metaTagVal *mtv; AllocVar(mtv); mtv->tag = cloneString(tag); mtv->val = cloneString(val); return mtv; } void metaTagValFree(struct metaTagVal **pMtv)