diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2024-01-19 18:46:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-19 18:46:11 +0100 |
commit | 0bcc0e92b3f0ac57d4c4650722f347593a258572 (patch) | |
tree | 51a793066928731ce8da0f3b123ccf602d62281e /core/variant/variant_call.cpp | |
parent | 7827c8e37010241b376748b22db85847c8614dbd (diff) | |
parent | 24fe0715b53c6e599adfea9f69716db279be9db4 (diff) | |
download | redot-engine-0bcc0e92b3f0ac57d4c4650722f347593a258572.tar.gz |
Merge pull request #86730 from reduz/64-bit-cowdata
Promote CowData to 64 bits
Diffstat (limited to 'core/variant/variant_call.cpp')
-rw-r--r-- | core/variant/variant_call.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/variant/variant_call.cpp b/core/variant/variant_call.cpp index 03836985f3..90f7e7b44a 100644 --- a/core/variant/variant_call.cpp +++ b/core/variant/variant_call.cpp @@ -666,7 +666,7 @@ struct _VariantCall { CharString cs; cs.resize(p_instance->size() + 1); memcpy(cs.ptrw(), r, p_instance->size()); - cs[p_instance->size()] = 0; + cs[(int)p_instance->size()] = 0; s = cs.get_data(); } |