diff options
author | stefanf <stefanf@FreeBSD.org> | 2005-04-09 14:31:41 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2005-04-09 14:31:41 +0000 |
commit | 60b910d7c27c4544e9c4525d0092d04cfdaf384e (patch) | |
tree | df069329e153ae625933b8518f079cd3eb356753 /usr.bin/sed | |
parent | 1b9c36cc46d51f70af44b3a5e15adda1896c2cdf (diff) | |
download | FreeBSD-src-60b910d7c27c4544e9c4525d0092d04cfdaf384e.zip FreeBSD-src-60b910d7c27c4544e9c4525d0092d04cfdaf384e.tar.gz |
Remove unused variables.
Diffstat (limited to 'usr.bin/sed')
-rw-r--r-- | usr.bin/sed/process.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/sed/process.c b/usr.bin/sed/process.c index 918e22c..ffdb629 100644 --- a/usr.bin/sed/process.c +++ b/usr.bin/sed/process.c @@ -92,9 +92,8 @@ process(void) { struct s_command *cp; SPACE tspace; - size_t len, oldpsl = 0; + size_t oldpsl = 0; char *p; - char nc; p = NULL; |