Minor formatting fix from code audit in cli.c
authorJames Golovich <james@gnuinter.net>
Wed, 14 Jul 2004 14:53:24 +0000 (14:53 +0000)
committerJames Golovich <james@gnuinter.net>
Wed, 14 Jul 2004 14:53:24 +0000 (14:53 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3437 65c4cc65-6c06-0410-ace0-fbb531ad65f3

cli.c

diff --git a/cli.c b/cli.c
index 629b497..dcc8807 100755 (executable)
--- a/cli.c
+++ b/cli.c
@@ -47,8 +47,7 @@ void ast_cli(int fd, char *fmt, ...)
        va_end(ap);
        if (res == -1) {
                ast_log(LOG_ERROR, "Out of memory\n");
-       }
-       else {
+       } else {
                ast_carefulwrite(fd, stuff, strlen(stuff), 100);
                free(stuff);
        }