r552: fixed a tiny typo on struct packing

The old packing wastes memory, thought very small.
This commit is contained in:
Heng Li 2017-11-05 08:27:26 -05:00
parent c2b09356b8
commit fa5a645ca5
2 changed files with 2 additions and 2 deletions

2
main.c
View File

@ -6,7 +6,7 @@
#include "mmpriv.h"
#include "getopt.h"
#define MM_VERSION "2.3-r550-dirty"
#define MM_VERSION "2.3-r552-dirty"
#ifdef __linux__
#include <sys/resource.h>

View File

@ -72,7 +72,7 @@ typedef struct {
int32_t as; // offset in the a[] array (for internal uses only)
int32_t mlen, blen; // seeded exact match length; seeded alignment block length
uint32_t mapq:8, split:2, n_sub:22; // mapQ; split pattern; number of suboptimal mappings
uint32_t sam_pri:1, proper_frag:1, iden_flt:1, pe_thru:1, dummy:29;
uint32_t sam_pri:1, proper_frag:1, iden_flt:1, pe_thru:1, dummy:28;
uint32_t hash;
mm_extra_t *p;
} mm_reg1_t;