Normalize #define whitespace.

Consistently use a tab rather than a space following #define.
This commit is contained in:
Jason Evans
2013-12-08 22:28:27 -08:00
parent 2a83ed0284
commit a4f124f59f
16 changed files with 58 additions and 58 deletions

View File

@@ -17,7 +17,7 @@ typedef bool ckh_keycomp_t (const void *, const void *);
* There are 2^LG_CKH_BUCKET_CELLS cells in each hash table bucket. Try to fit
* one bucket per L1 cache line.
*/
#define LG_CKH_BUCKET_CELLS (LG_CACHELINE - LG_SIZEOF_PTR - 1)
#define LG_CKH_BUCKET_CELLS (LG_CACHELINE - LG_SIZEOF_PTR - 1)
#endif /* JEMALLOC_H_TYPES */
/******************************************************************************/