aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/sed
diff options
context:
space:
mode:
authorArchie Cobbs <archie@FreeBSD.org>1998-12-07 05:33:39 +0000
committerArchie Cobbs <archie@FreeBSD.org>1998-12-07 05:33:39 +0000
commit2806aab73b6036e6f10f753912518e9fe14467ae (patch)
tree92bb4169a94d519bd7d78411964efc8da4f70d45 /usr.bin/sed
parentc4b7d2b697436b32e181b65b36ab782107462e8a (diff)
Notes
Diffstat (limited to 'usr.bin/sed')
-rw-r--r--usr.bin/sed/Makefile1
-rw-r--r--usr.bin/sed/process.c4
2 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/sed/Makefile b/usr.bin/sed/Makefile
index 99f860be5f1a..d6b13a26e44f 100644
--- a/usr.bin/sed/Makefile
+++ b/usr.bin/sed/Makefile
@@ -1,6 +1,7 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= sed
+CFLAGS+=-Wall
SRCS= compile.c main.c misc.c process.c
.include <bsd.prog.mk>
diff --git a/usr.bin/sed/process.c b/usr.bin/sed/process.c
index 18bf5159488e..535405af28bb 100644
--- a/usr.bin/sed/process.c
+++ b/usr.bin/sed/process.c
@@ -40,7 +40,7 @@
static char sccsid[] = "@(#)process.c 8.6 (Berkeley) 4/20/94";
#endif
static const char rcsid[] =
- "$Id: process.c,v 1.6 1997/08/11 07:21:06 charnier Exp $";
+ "$Id: process.c,v 1.7 1998/04/29 21:58:36 ache Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -94,7 +94,7 @@ process()
{
struct s_command *cp;
SPACE tspace;
- size_t len, oldpsl;
+ size_t len, oldpsl = 0;
char *p;
for (linenum = 0; mf_fgets(&PS, REPLACE);) {