ef2b0974644900d17bdc4e0a2c8056e995832282
markd
  Thu Jan 16 11:14:03 2020 -0800
Revert "Initial pass at 64bit blat index"

This reverts commit 85f6ef8de85a89781978add2ed98fb158718cd40.

diff --git src/jkOwnLib/patSpace.c src/jkOwnLib/patSpace.c
index 88b29d5..80f1de7 100644
--- src/jkOwnLib/patSpace.c
+++ src/jkOwnLib/patSpace.c
@@ -3,31 +3,31 @@
 /* Copyright 1999-2003 Jim Kent.  All rights reserved. */
 #include "common.h"
 #include "portable.h"
 #include "dnaseq.h"
 #include "ooc.h"
 #include "patSpace.h"
 
 
 #define blockSize (256)
 
 #define BIGONE	/* define this for 32 bit version. */
 
 #ifdef BIGONE
 
 #define maxBlockCount (2*230*1024 - 1)
-#define psBits bits64
+#define psBits bits32
 /* psBits is the size of an index word.  If 16 bits
  * patSpace will use less memory, but be limited to
  * 16 meg or less genome size. */
 
 #else /* BIGONE */
 
 #define maxBlockCount (64*1024 - 1)
 #define psBits bits16
 /* psBits is the size of an index word.  If 16 bits
  * patSpace will use less memory, but be limited to
  * 16 meg or less genome size. */
 
 #endif /* BIGONE */