lifecycle: Remove debugging statement.

Signed-off-by: Maximilian Wilhelm <max@sdn.clinic>
This commit is contained in:
Maximilian Wilhelm 2020-10-06 03:24:14 +02:00
parent 4a8230f916
commit 99b0d67b8e

View file

@ -122,7 +122,6 @@ append_to_buffer(char **buffer, size_t *buffer_len, char **end, const char *valu
/* Make sure there is enough room to add the value to the buffer */ /* Make sure there is enough room to add the value to the buffer */
if (*buffer_len < strlen (*buffer) + value_len + 2) if (*buffer_len < strlen (*buffer) + value_len + 2)
{ {
printf ("Doubling buffer...\n");
*buffer = realloc (*buffer, *buffer_len * 2); *buffer = realloc (*buffer, *buffer_len * 2);
if (*buffer == NULL) if (*buffer == NULL)
/* XXX Here be dragons */ /* XXX Here be dragons */