summaryrefslogtreecommitdiffstats
path: root/sys/dev/isa/ast.c
diff options
context:
space:
mode:
authorkstailey <kstailey@openbsd.org>1996-11-23 21:44:50 +0000
committerkstailey <kstailey@openbsd.org>1996-11-23 21:44:50 +0000
commit833613b20d5a12fd58f8b01b6411aa0808282153 (patch)
tree57c26972432de72cd2b7342fe8a249ad6250fce7 /sys/dev/isa/ast.c
parentDeal with leading whitespace in find output. Fixes problem of devices (diff)
downloadwireguard-openbsd-833613b20d5a12fd58f8b01b6411aa0808282153.tar.xz
wireguard-openbsd-833613b20d5a12fd58f8b01b6411aa0808282153.zip
added const to second parameter of cfprint_t routines
Diffstat (limited to 'sys/dev/isa/ast.c')
-rw-r--r--sys/dev/isa/ast.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/isa/ast.c b/sys/dev/isa/ast.c
index 2353dd42e60..f4411947118 100644
--- a/sys/dev/isa/ast.c
+++ b/sys/dev/isa/ast.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ast.c,v 1.13 1996/11/12 20:30:25 niklas Exp $ */
+/* $OpenBSD: ast.c,v 1.14 1996/11/23 21:46:37 kstailey Exp $ */
/* $NetBSD: ast.c,v 1.28 1996/05/12 23:51:45 mycroft Exp $ */
/*
@@ -63,7 +63,7 @@ struct ast_softc {
int astprobe __P((struct device *, void *, void *));
void astattach __P((struct device *, struct device *, void *));
int astintr __P((void *));
-int astprint __P((void *, char *));
+int astprint __P((void *, const char *));
struct cfattach ast_ca = {
sizeof(struct ast_softc), astprobe, astattach
@@ -128,7 +128,7 @@ out:
int
astprint(aux, pnp)
void *aux;
- char *pnp;
+ const char *pnp;
{
struct commulti_attach_args *ca = aux;