-/* $OpenBSD: compile.c,v 1.2 1996/06/26 05:39:05 deraadt Exp $ */
+/* $OpenBSD: compile.c,v 1.3 1997/04/28 20:23:19 millert Exp $ */
/*-
* Copyright (c) 1992 Diomidis Spinellis.
#ifndef lint
/* from: static char sccsid[] = "@(#)compile.c 8.1 (Berkeley) 6/6/93"; */
-static char *rcsid = "$OpenBSD: compile.c,v 1.2 1996/06/26 05:39:05 deraadt Exp $";
+static char *rcsid = "$OpenBSD: compile.c,v 1.3 1997/04/28 20:23:19 millert Exp $";
#endif /* not lint */
#include <sys/types.h>
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
a->type = AT_LINE;
- a->u.l = strtol(p, &end, 10);
+ a->u.l = strtoul(p, &end, 10);
return (end);
default:
err(COMPILE, "expected context address");