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/utils/verticalSplitSqlTable/verticalSplitSqlTable.c src/utils/verticalSplitSqlTable/verticalSplitSqlTable.c
index ec45e35..03119fe 100644
--- src/utils/verticalSplitSqlTable/verticalSplitSqlTable.c
+++ src/utils/verticalSplitSqlTable/verticalSplitSqlTable.c
@@ -1,27 +1,27 @@
 /* verticalSplitSqlTable - Split a database table into two new related tables that share a field. */
 
 /* Copyright (C) 2012 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 "ra.h"
 #include "portable.h"
 #include "obscure.h"
-#include "errabort.h"
+#include "errAbort.h"
 #include "asParse.h"
 
 /* Command line options. */
 boolean partialOk = FALSE;
 boolean mergeOk = FALSE;
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "verticalSplitSqlTable - Split a database table into two new related tables that share a field.\n"
   "Note, this program just works on tab-separated files for the split tables, it does not actually\n"
   "use a database.\n"
   "usage:\n"
   "   verticalSplitSqlTable oldTab oldAs splitSpec outDir\n"