summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authormaxim <maxim@FreeBSD.org>2003-06-30 11:51:21 +0000
committermaxim <maxim@FreeBSD.org>2003-06-30 11:51:21 +0000
commit1ef1fa0214a7603fe09c1896407ce34267558f0b (patch)
treeb4745ef1c7292f8575c4287a480d62f1b06c5e93 /usr.bin
parent132358e7bf44ef1b1d14e579f352f20c58c755d0 (diff)
downloadFreeBSD-src-1ef1fa0214a7603fe09c1896407ce34267558f0b.zip
FreeBSD-src-1ef1fa0214a7603fe09c1896407ce34267558f0b.tar.gz
o Fix identation.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ee/ee.c42
1 files changed, 21 insertions, 21 deletions
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++;
}
}
OpenPOWER on IntegriCloud