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/pthreadWrap.c src/lib/pthreadWrap.c index fdaf850..f532e2d 100644 --- src/lib/pthreadWrap.c +++ src/lib/pthreadWrap.c @@ -1,25 +1,25 @@ /* pthreadWrap - error checking wrappers around Posix * thread functions. Most of the errors here are invariably * fatal, but shouldn't happen unless the kernal or * the program is hosed. */ /* Copyright (C) 2011 The Regents of the University of California * See README in this or parent directory for licensing information. */ #include "common.h" -#include "errabort.h" +#include "errAbort.h" #include "pthreadWrap.h" static void pwarn(char *function, int err) /* Print a warning message on non-zero error code. */ { if (err != 0) warn("Couldn't %s: %s\n", function, strerror(err)); } static void perr(char *function, int err) /* Print out error for function and abort on * non-zero error code.. */ { if (err != 0)