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/hg/inc/hPrint.h src/hg/inc/hPrint.h
index 5e10904..6c8f612 100644
--- src/hg/inc/hPrint.h
+++ src/hg/inc/hPrint.h
@@ -1,26 +1,26 @@
 /* hPrint - turning html printing on and off, which is useful
  * when postscript and PDF images are being drawn  */
 
 /* Copyright (C) 2010 The Regents of the University of California 
  * See README in this or parent directory for licensing information. */
 
 #ifndef HPRINT_H
 #define HPRINT_H
 
 #include "common.h"
-#include "errabort.h"
+#include "errAbort.h"
 #include "cheapcgi.h"
 
 void hPrintf(char *format, ...)
 /* Printf that can be suppressed if not making html. */
 #if defined(__GNUC__)
 __attribute__((format(printf, 1, 2)))
 #endif
 ;
 
 void hvPrintf(char *format, va_list args);
 /* Suppressable variable args printf. Check for write error so we can
  * terminate if http connection breaks. */
 
 boolean hPrintStatus();
 /* is html printing on or off ?