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/errCatch.c src/lib/errCatch.c index adf13a4..30be9b5 100644 --- src/lib/errCatch.c +++ src/lib/errCatch.c @@ -6,31 +6,31 @@ * Note that error conditions caught this way will tend to * leak resources unless there are additional wrappers. * * Typical usage is * errCatch = errCatchNew(); * if (errCatchStart(errCatch)) * doFlakyStuff(); * errCatchEnd(errCatch); * if (errCatch->gotError) * warn("%s", errCatch->message->string); * errCatchFree(&errCatch); * cleanupFlakyStuff(); */ #include "common.h" -#include "errabort.h" +#include "errAbort.h" #include "dystring.h" #include "hash.h" #include <pthread.h> #include "errCatch.h" struct errCatch *errCatchNew() /* Return new error catching structure. */ { struct errCatch *errCatch; AllocVar(errCatch); errCatch->message = dyStringNew(0); return errCatch; }