diff options
Diffstat (limited to 'sys/dev/tc/tc.c')
-rw-r--r-- | sys/dev/tc/tc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/tc/tc.c b/sys/dev/tc/tc.c index 5474b1c9bed..dc1d61f37eb 100644 --- a/sys/dev/tc/tc.c +++ b/sys/dev/tc/tc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tc.c,v 1.7 1996/10/31 01:05:13 niklas Exp $ */ +/* $OpenBSD: tc.c,v 1.8 1996/11/23 21:47:10 kstailey Exp $ */ /* $NetBSD: tc.c,v 1.16 1996/05/17 23:39:19 cgd Exp $ */ /* @@ -62,7 +62,7 @@ struct cfdriver tc_cd = { NULL, "tc", DV_DULL }; -int tcprint __P((void *, char *)); +int tcprint __P((void *, const char *)); int tcsubmatch __P((struct device *, void *, void *)); int tc_checkslot __P((tc_addr_t, char *)); void tc_devinfo __P((const char *, char *)); @@ -194,7 +194,7 @@ tcattach(parent, self, aux) int tcprint(aux, pnp) void *aux; - char *pnp; + const char *pnp; { struct tc_attach_args *ta = aux; char devinfo[256]; |