change kstring_t integer storage size

This is for compatibility with kstring_t in htslib.
This commit is contained in:
Jared Simpson
2020-02-19 09:35:49 -05:00
committed by Heng Li
parent 6a4b9f9082
commit 48cb80ea94

2
kseq.h
View File

@@ -89,7 +89,7 @@
#ifndef KSTRING_T
#define KSTRING_T kstring_t
typedef struct __kstring_t {
unsigned l, m;
size_t l, m;
char *s;
} kstring_t;
#endif