diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-14 16:51:27 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-14 16:51:27 +0000 |
commit | a58f8f81c2414cc0f11433900b97bd4e895164c4 (patch) | |
tree | 53a5e51092c28cdc8b903bd7ab2123ae5e14d337 /sys/lib/libsa | |
parent | 2182d6b5e8bcabf640809bfe36592220b8abfb76 (diff) |
remove bogus comment
Diffstat (limited to 'sys/lib/libsa')
-rw-r--r-- | sys/lib/libsa/exec_ecoff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/exec_ecoff.c b/sys/lib/libsa/exec_ecoff.c index fe08151dc59..87b6a938b94 100644 --- a/sys/lib/libsa/exec_ecoff.c +++ b/sys/lib/libsa/exec_ecoff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exec_ecoff.c,v 1.1 1998/07/14 15:08:27 mickey Exp $ */ +/* $OpenBSD: exec_ecoff.c,v 1.2 1998/07/14 16:51:26 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -63,7 +63,7 @@ ecoff_load(fd, xp) xp->data.size = x->a.dsize; xp->bss.size = x->a.bsize; xp->sym.size = x->f.f_nsyms * sizeof (struct ecoff_extsym); - xp->str.size = 0; /* will be hacked later in exec() */ + xp->str.size = 0; xp->text.foff = ECOFF_TXTOFF(x); xp->data.foff = xp->text.foff + x->a.tsize; |