diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-06-06 20:58:35 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-06-06 20:58:35 +0000 |
commit | 49691770a93ca1f44cae5f18e1bcb34d994921d8 (patch) | |
tree | 738fa7534593b8e88f0faf5ebe019c9c8e425ad5 /src/htsarrays.h | |
parent | 1a683c668a183550976d6851649f1f6acb8aa3cc (diff) |
Fixed initializer.
Diffstat (limited to 'src/htsarrays.h')
-rw-r--r-- | src/htsarrays.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htsarrays.h b/src/htsarrays.h index a750e42..c89222e 100644 --- a/src/htsarrays.h +++ b/src/htsarrays.h @@ -61,7 +61,7 @@ static void hts_record_assert_memory_failed(const size_t size) { /** Capacity. **/ \ size_t capa; \ } -#define EMPTY_TYPED_ARRAY { NULL, 0, 0 } +#define EMPTY_TYPED_ARRAY { { NULL }, 0, 0 } /** Array size, in elements. **/ #define TypedArraySize(A) ((A).size) |