=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/arch.c,v retrieving revision 1.21 retrieving revision 1.22 diff -c -r1.21 -r1.22 *** src/usr.bin/make/arch.c 1999/12/18 21:56:07 1.21 --- src/usr.bin/make/arch.c 1999/12/18 21:58:07 1.22 *************** *** 1,4 **** ! /* $OpenBSD: arch.c,v 1.21 1999/12/18 21:56:07 espie Exp $ */ /* $NetBSD: arch.c,v 1.17 1996/11/06 17:58:59 christos Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: arch.c,v 1.22 1999/12/18 21:58:07 espie Exp $ */ /* $NetBSD: arch.c,v 1.17 1996/11/06 17:58:59 christos Exp $ */ /* *************** *** 43,49 **** #if 0 static char sccsid[] = "@(#)arch.c 8.2 (Berkeley) 1/2/94"; #else ! static char rcsid[] = "$OpenBSD: arch.c,v 1.21 1999/12/18 21:56:07 espie Exp $"; #endif #endif /* not lint */ --- 43,49 ---- #if 0 static char sccsid[] = "@(#)arch.c 8.2 (Berkeley) 1/2/94"; #else ! static char rcsid[] = "$OpenBSD: arch.c,v 1.22 1999/12/18 21:58:07 espie Exp $"; #endif #endif /* not lint */ *************** *** 344,350 **** return(FAILURE); } else { gn->type |= OP_ARCHV; ! (void)Lst_AtEnd(nodeLst, (ClientData)gn); } } else if (Arch_ParseArchive(&sacrifice, nodeLst, ctxt)!=SUCCESS) { /* --- 344,350 ---- return(FAILURE); } else { gn->type |= OP_ARCHV; ! Lst_AtEnd(nodeLst, (ClientData)gn); } } else if (Arch_ParseArchive(&sacrifice, nodeLst, ctxt)!=SUCCESS) { /* *************** *** 379,385 **** * end of the provided list. */ gn->type |= OP_ARCHV; ! (void) Lst_AtEnd (nodeLst, (ClientData)gn); } } Lst_Destroy(members, NOFREE); --- 379,385 ---- * end of the provided list. */ gn->type |= OP_ARCHV; ! Lst_AtEnd(nodeLst, (ClientData)gn); } } Lst_Destroy(members, NOFREE); *************** *** 397,403 **** * provided list. */ gn->type |= OP_ARCHV; ! (void) Lst_AtEnd (nodeLst, (ClientData)gn); } } if (doSubst) { --- 397,403 ---- * provided list. */ gn->type |= OP_ARCHV; ! Lst_AtEnd(nodeLst, (ClientData)gn); } } if (doSubst) { *************** *** 644,650 **** fclose (arch); ! (void) Lst_AtEnd (archives, (ClientData) ar); /* * Now that the archive has been read and cached, we can look into --- 644,650 ---- fclose (arch); ! Lst_AtEnd(archives, (ClientData)ar); /* * Now that the archive has been read and cached, we can look into