indent
authorderaadt <deraadt@openbsd.org>
Mon, 31 Mar 1997 07:42:23 +0000 (07:42 +0000)
committerderaadt <deraadt@openbsd.org>
Mon, 31 Mar 1997 07:42:23 +0000 (07:42 +0000)
sys/lib/libsa/exec.c

index 6ab8a44..1bb205d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: exec.c,v 1.14 1997/03/31 04:57:36 weingart Exp $      */
+/*     $OpenBSD: exec.c,v 1.15 1997/03/31 07:42:23 deraadt Exp $       */
 /*     $NetBSD: exec.c,v 1.15 1996/10/13 02:29:01 christos Exp $       */
 
 /*-
@@ -105,7 +105,7 @@ exec(path, loadaddr, howto)
        addr += i;
 #ifdef EXEC_DEBUG
        printf("\ntext {%x, %x, %x, %x}\n",
-               addr[0], addr[1], addr[2], addr[3]);
+           addr[0], addr[1], addr[2], addr[3]);
        etxt = addr;
 #endif
        if (N_GETMAGIC(x) == NMAGIC)
@@ -127,7 +127,7 @@ exec(path, loadaddr, howto)
                *addr++ = 0;
 
         /* Symbols */
-       if(x.a_syms){
+       if (x.a_syms) {
                ssym = addr;
                bcopy(&x.a_syms, addr, sizeof(x.a_syms));
                addr += sizeof(x.a_syms);
@@ -153,9 +153,9 @@ exec(path, loadaddr, howto)
 
 #define        round_to_size(x) \
        (((int)(x) + sizeof(int) - 1) & ~(sizeof(int) - 1))
-        esym = (char *)round_to_size(addr - (char *)loadaddr);
+               esym = (char *)round_to_size(addr - (char *)loadaddr);
 #undef round_to_size
-       }else{
+       } else {
                ssym = 0;
                esym = 0;
        }