diff options
| author | christos <christos@NetBSD.org> | 1999-04-28 09:12:24 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 1999-04-28 09:12:24 +0000 |
| commit | 2da63ed66f8cb14b286fdbf5e22b659f19d82002 (patch) | |
| tree | 0d72abbdc9caba5fffee06dbadcb04c8fd40fe10 /sys/lib/libsa | |
| parent | 0766a607d4faa91bcafd95a5eaaa799e3680d7b6 (diff) | |
cosmetic printf change
Diffstat (limited to 'sys/lib/libsa')
| -rw-r--r-- | sys/lib/libsa/loadfile.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/lib/libsa/loadfile.c b/sys/lib/libsa/loadfile.c index 9514879bc72..7d6eb2d7459 100644 --- a/sys/lib/libsa/loadfile.c +++ b/sys/lib/libsa/loadfile.c @@ -1,4 +1,4 @@ -/* $NetBSD: loadfile.c,v 1.1 1999/04/28 09:08:50 christos Exp $ */ +/* $NetBSD: loadfile.c,v 1.2 1999/04/28 09:12:24 christos Exp $ */ /*- * Copyright (c) 1997 The NetBSD Foundation, Inc. @@ -504,9 +504,10 @@ aout_exec(fd, x, marks, flags) if (magic == ZMAGIC || magic == NMAGIC) { int size = (int)maxp & __LDPGSZ; - PROGRESS(("/%d", size)); - if (flags & LOAD_TEXTA) + if (flags & LOAD_TEXTA) { + PROGRESS(("/%d", size)); BZERO(maxp, size); + } if (flags & (LOAD_TEXTA|COUNT_TEXTA)) maxp += size; |
