diff options
-rw-r--r-- | usr.bin/strip/strip.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.bin/strip/strip.c b/usr.bin/strip/strip.c index 506d0c5c4ae..f190031c58f 100644 --- a/usr.bin/strip/strip.c +++ b/usr.bin/strip/strip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strip.c,v 1.24 2007/09/02 15:19:34 deraadt Exp $ */ +/* $OpenBSD: strip.c,v 1.25 2009/06/19 09:40:43 sobrado Exp $ */ /* * Copyright (c) 1988 Regents of the University of California. @@ -37,7 +37,7 @@ char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)strip.c 5.8 (Berkeley) 11/6/91";*/ -static char rcsid[] = "$OpenBSD: strip.c,v 1.24 2007/09/02 15:19:34 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: strip.c,v 1.25 2009/06/19 09:40:43 sobrado Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -133,8 +133,10 @@ main(int argc, char *argv[]) (void)close(fd); ERROR(EFTYPE); } - /* since we're dealing with an mmap there, we have to convert once - for dealing with data in memory, and a second time for out + /* + * Since we're dealing with an mmap there, we have to convert + * once for dealing with data in memory, and a second time + * for out. */ fix_header_order(ep); newsize = 0; |