=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/make/str.c,v retrieving revision 1.28 retrieving revision 1.29 diff -u -r1.28 -r1.29 --- src/usr.bin/make/str.c 2013/11/22 15:47:35 1.28 +++ src/usr.bin/make/str.c 2014/04/22 08:26:31 1.29 @@ -1,4 +1,4 @@ -/* $OpenBSD: str.c,v 1.28 2013/11/22 15:47:35 espie Exp $ */ +/* $OpenBSD: str.c,v 1.29 2014/04/22 08:26:31 espie Exp $ */ /* $NetBSD: str.c,v 1.13 1996/11/06 17:59:23 christos Exp $ */ /*- @@ -150,8 +150,8 @@ *t++ = '\0'; if (argc == argmax) { argmax *= 2; /* ramp up fast */ - argv = erealloc(argv, - (argmax + 1) * sizeof(char *)); + argv = emult_realloc(argv, + (argmax + 1), sizeof(char *)); } argv[argc++] = start; start = NULL;