diff options
Diffstat (limited to 'core/variant_call.cpp')
-rw-r--r-- | core/variant_call.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/variant_call.cpp b/core/variant_call.cpp index eca5d0567b..9ea2fed5ae 100644 --- a/core/variant_call.cpp +++ b/core/variant_call.cpp @@ -584,8 +584,7 @@ struct _VariantCall { if (buffer_size < 0) { r_ret = decompressed; - ERR_EXPLAIN("Decompression buffer size is less than zero"); - ERR_FAIL(); + ERR_FAIL_MSG("Decompression buffer size is less than zero."); } decompressed.resize(buffer_size); |