Date: Thu, 11 May 2000 20:47:13 -0700 (PDT) From: mmuir@es.co.nz (Mike C. Muir) To: freebsd-stable@FreeBSD.ORG Subject: Breakage in world build for SED. + FIX. Message-ID: <20000512034713.3AB1F1F4E@mike.dhis.org>
next in thread | raw e-mail | index | archive | help
Theres the smallest possible break in stable as of Thu May 11 20:40:11
PDT 2000
where a variable has been typo'd:
/usr/src/usr.bin/sed/main.c: In function `main':
/usr/src/usr.bin/sed/main.c:129: `temp_arg' undeclared (first use in
this function)
/usr/src/usr.bin/sed/main.c:129: (Each undeclared identifier is reported
only once
/usr/src/usr.bin/sed/main.c:129: for each function it appears in.)
/usr/src/usr.bin/sed/main.c:117: warning: unused variable `tmp_arg'
Here's a unified diff to fix it incase you dont want to open er up:
***START***
--- main.c Thu May 11 20:38:05 2000
+++ old_main.c Thu May 11 20:38:45 2000
@@ -114,7 +114,7 @@
char *argv[];
{
int c, fflag;
- char *temp_arg;
+ char *tmp_arg;
(void) setlocale(LC_ALL, "");
***END***
-mike.
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000512034713.3AB1F1F4E>
