=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/suff.c,v retrieving revision 1.88 retrieving revision 1.89 diff -c -r1.88 -r1.89 *** src/usr.bin/make/suff.c 2014/05/12 19:11:19 1.88 --- src/usr.bin/make/suff.c 2015/01/23 13:18:40 1.89 *************** *** 1,4 **** ! /* $OpenBSD: suff.c,v 1.88 2014/05/12 19:11:19 espie Exp $ */ /* $NetBSD: suff.c,v 1.13 1996/11/06 17:59:25 christos Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: suff.c,v 1.89 2015/01/23 13:18:40 espie Exp $ */ /* $NetBSD: suff.c,v 1.13 1996/11/06 17:59:25 christos Exp $ */ /* *************** *** 679,686 **** void *sp, /* suffix for which to create a Src structure */ void *lsp) /* list and parent for the new Src */ { ! Suff *s = (Suff *)sp; ! LstSrc *ls = (LstSrc *)lsp; Src *s2; /* new Src structure */ Src *targ; /* Target structure */ --- 679,686 ---- void *sp, /* suffix for which to create a Src structure */ void *lsp) /* list and parent for the new Src */ { ! Suff *s = sp; ! LstSrc *ls = lsp; Src *s2; /* new Src structure */ Src *targ; /* Target structure */ *************** *** 1712,1725 **** static void SuffPrintName(void *p) { ! Suff *s = (Suff *)p; printf("%s ", s == emptySuff ? "" : s->name); } static void SuffPrintSuff(void *sp) { ! Suff *s = (Suff *)sp; printf("# %-5s ", s->name); --- 1712,1725 ---- static void SuffPrintName(void *p) { ! Suff *s = p; printf("%s ", s == emptySuff ? "" : s->name); } static void SuffPrintSuff(void *sp) { ! Suff *s = sp; printf("# %-5s ", s->name);