=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/window/Attic/string.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- src/usr.bin/window/Attic/string.c 1997/02/25 00:04:18 1.3 +++ src/usr.bin/window/Attic/string.c 1998/04/26 22:49:06 1.4 @@ -1,4 +1,4 @@ -/* $OpenBSD: string.c,v 1.3 1997/02/25 00:04:18 downsj Exp $ */ +/* $OpenBSD: string.c,v 1.4 1998/04/26 22:49:06 millert Exp $ */ /* $NetBSD: string.c,v 1.5 1995/09/29 00:44:06 cgd Exp $ */ /* @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)string.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: string.c,v 1.3 1997/02/25 00:04:18 downsj Exp $"; +static char rcsid[] = "$OpenBSD: string.c,v 1.4 1998/04/26 22:49:06 millert Exp $"; #endif #endif /* not lint */ @@ -131,7 +131,7 @@ { register struct string *s; - s = (struct string *) malloc((unsigned)l + str_offset); + s = (struct string *) malloc(l + str_offset); if (s == 0) return 0; if (str_head.s_forw == 0)