lifecycle: Remove debugging statement.
Signed-off-by: Maximilian Wilhelm <max@sdn.clinic>
This commit is contained in:
parent
4a8230f916
commit
99b0d67b8e
1 changed files with 0 additions and 1 deletions
|
@ -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 */
|
||||||
|
|
Loading…
Reference in a new issue