From 1ef1fa0214a7603fe09c1896407ce34267558f0b Mon Sep 17 00:00:00 2001 From: maxim Date: Mon, 30 Jun 2003 11:51:21 +0000 Subject: o Fix identation. --- usr.bin/ee/ee.c | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'usr.bin') diff --git a/usr.bin/ee/ee.c b/usr.bin/ee/ee.c index 10e2874..65ca72d 100644 --- a/usr.bin/ee/ee.c +++ b/usr.bin/ee/ee.c @@ -2098,27 +2098,27 @@ char *arguments[]; } while (count < numargs) { - buff = arguments[count]; - if (top_of_stack == NULL) - { - temp_names = top_of_stack = name_alloc(); - } - else - { - temp_names->next_name = name_alloc(); - temp_names = temp_names->next_name; - } - ptr = temp_names->name = malloc(strlen(buff) + 1); - while (*buff != (char) NULL) - { - *ptr = *buff; - buff++; - ptr++; - } - *ptr = (char) NULL; - temp_names->next_name = NULL; - input_file = TRUE; - recv_file = TRUE; + buff = arguments[count]; + if (top_of_stack == NULL) + { + temp_names = top_of_stack = name_alloc(); + } + else + { + temp_names->next_name = name_alloc(); + temp_names = temp_names->next_name; + } + ptr = temp_names->name = malloc(strlen(buff) + 1); + while (*buff != (char) NULL) + { + *ptr = *buff; + buff++; + ptr++; + } + *ptr = (char) NULL; + temp_names->next_name = NULL; + input_file = TRUE; + recv_file = TRUE; count++; } } -- cgit v1.1