a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/lib/errCatch.c src/lib/errCatch.c index a5e0211..2f25025 100644 --- src/lib/errCatch.c +++ src/lib/errCatch.c @@ -9,31 +9,30 @@ * doFlakyStuff(); * errCatchEnd(errCatch); * if (errCatch->gotError) * warn("%s", errCatch->message->string); * errCatchFree(&errCatch); * cleanupFlakyStuff(); */ #include "common.h" #include "errabort.h" #include "dystring.h" #include "hash.h" #include <pthread.h> #include "errCatch.h" -static char const rcsid[] = "$Id: errCatch.c,v 1.7 2010/04/01 16:35:37 markd Exp $"; struct errCatch *errCatchNew() /* Return new error catching structure. */ { struct errCatch *errCatch; AllocVar(errCatch); errCatch->message = dyStringNew(0); return errCatch; } void errCatchFree(struct errCatch **pErrCatch) /* Free up resources associated with errCatch */ { struct errCatch *errCatch = *pErrCatch;