diff options
| author | John Polstra <jdp@FreeBSD.org> | 1998-10-15 16:09:56 +0000 |
|---|---|---|
| committer | John Polstra <jdp@FreeBSD.org> | 1998-10-15 16:09:56 +0000 |
| commit | 201fdc5426e79e694c7d5466497f7ffebd21f8fe (patch) | |
| tree | f4cbc34bb5f48475b5f88a89417ee6e717f07586 | |
| parent | cc4fb50148ab99ff2b709833d58273d969910293 (diff) | |
Notes
| -rw-r--r-- | usr.bin/make/arch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/make/arch.c b/usr.bin/make/arch.c index 1411592adb3a..e886af095b62 100644 --- a/usr.bin/make/arch.c +++ b/usr.bin/make/arch.c @@ -35,7 +35,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: arch.c,v 1.8 1997/02/22 19:27:05 peter Exp $ + * $Id: arch.c,v 1.9 1998/10/15 13:00:34 jkoshy Exp $ */ #ifndef lint @@ -1187,7 +1187,7 @@ Arch_LibOODate (gn) oodate = TRUE; } #else - oodate = (gm->mtime == 0); /* out-of-date if not present */ + oodate = (gn->mtime == 0); /* out-of-date if not present */ #endif } return (oodate); |
