Minor formatting fix from code audit in cli.c

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3437 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.0
James Golovich 21 years ago
parent 044ad2e2e7
commit fa0ca01ffe

@ -47,8 +47,7 @@ void ast_cli(int fd, char *fmt, ...)
va_end(ap); va_end(ap);
if (res == -1) { if (res == -1) {
ast_log(LOG_ERROR, "Out of memory\n"); ast_log(LOG_ERROR, "Out of memory\n");
} } else {
else {
ast_carefulwrite(fd, stuff, strlen(stuff), 100); ast_carefulwrite(fd, stuff, strlen(stuff), 100);
free(stuff); free(stuff);
} }

Loading…
Cancel
Save