lib: Remove debug fprintf for cmd_element copy

Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
This commit is contained in:
Quentin Young 2016-08-10 19:11:31 +00:00
parent ca90e05104
commit 9b887497e8

View File

@ -4210,7 +4210,6 @@ copy_cmd_element(struct cmd_element *cmd)
el->daemon = cmd->daemon; el->daemon = cmd->daemon;
el->tokens = cmd->tokens ? vector_copy(cmd->tokens) : NULL; el->tokens = cmd->tokens ? vector_copy(cmd->tokens) : NULL;
el->attr = cmd->attr; el->attr = cmd->attr;
fprintf(stderr, "successful copy\n");
return el; return el;
} }