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/kehayden/linearSat/linearSat.c src/kehayden/linearSat/linearSat.c
index 4e2b359..35d6d3d 100644
--- src/kehayden/linearSat/linearSat.c
+++ src/kehayden/linearSat/linearSat.c
@@ -1,30 +1,30 @@
 /* linearSat - assemble repeat regions such as centromeres from reads that have
  * been parsed into various repeat monomer variants.  Cycles of these variants tend to
  * form higher order repeats. */
 
 /* Copyright (C) 2013 The Regents of the University of California 
  * See README in this or parent directory for licensing information. */
 
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "options.h"
 #include "dystring.h"
 #include "dlist.h"
 #include "obscure.h"
-#include "errabort.h"
+#include "errAbort.h"
 
 /* Global vars - all of which can be set by command line options. */
 int pseudoCount = 1;
 int maxChainSize = 3;
 int initialOutSize = 10000;
 int maxOutSize;
 int maxToMiss = 0;
 boolean fullOnly = FALSE;
 boolean betweens = FALSE;
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "linearSat - create a linear projection of satellite arrays using the probablistic model\n"