diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1996-11-23 21:47:14 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1996-11-23 21:47:14 +0000 |
commit | 728527f840ec82a566f72f3cec384e341ac59a4c (patch) | |
tree | f9b921355a0db868e86c0df2976673aee9af1339 /sys/arch/sparc/dev/obio.c | |
parent | 306adfe37a19b924bfe990750192540a4af86079 (diff) |
added const to second parameter of cfprint_t routines
Diffstat (limited to 'sys/arch/sparc/dev/obio.c')
-rw-r--r-- | sys/arch/sparc/dev/obio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/dev/obio.c b/sys/arch/sparc/dev/obio.c index 37cf369fe48..2787aa91c01 100644 --- a/sys/arch/sparc/dev/obio.c +++ b/sys/arch/sparc/dev/obio.c @@ -66,7 +66,7 @@ static void obioattach __P((struct device *, struct device *, void *)); static void vmesattach __P((struct device *, struct device *, void *)); static void vmelattach __P((struct device *, struct device *, void *)); -int busprint __P((void *, char *)); +int busprint __P((void *, const char *)); static int busattach __P((struct device *, void *, void *, int)); void * bus_map __P((struct rom_reg *, int, int)); int obio_scan __P((struct device *, void *, void *)); @@ -122,7 +122,7 @@ busmatch(parent, vcf, aux) int busprint(args, obio) void *args; - char *obio; + const char *obio; { register struct confargs *ca = args; |