aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/core/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/core/utils.c b/src/lib/core/utils.c
index 66d1511..9b98639 100644
--- a/src/lib/core/utils.c
+++ b/src/lib/core/utils.c
@@ -1012,7 +1012,7 @@ int grow(const size_t size_new, size_t *size_orig, char **data) {
}
if (size_new >= *size_orig) {
const size_t new_size = *size_orig + size_new + 1;
- SYSDEBUG("template data buffer new size: %zu\n", new_size);
+ SYSDEBUG("template data buffer new size: %zu", new_size);
char *tmp = realloc(*data, new_size);
if (!tmp) {