diff options
Diffstat (limited to 'src/dstring.c')
-rw-r--r-- | src/dstring.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dstring.c b/src/dstring.c index 05efb10..2c9869d 100644 --- a/src/dstring.c +++ b/src/dstring.c @@ -2,7 +2,7 @@ // SPDX-License-Identifier: 0BSD #include "dstring.h" -#include <assert.h> +#include "diag.h" #include <stdarg.h> #include <stdio.h> #include <stdlib.h> @@ -184,7 +184,7 @@ int dstrvcatf(char **str, const char *format, va_list args) { tail = *str + len; ret = vsnprintf(tail, tail_len + 1, format, copy); if (ret < 0 || (size_t)ret != tail_len) { - assert(!"Length of formatted string changed"); + bfs_bug("Length of formatted string changed"); goto fail; } } |