diff options
author | dwmalone <dwmalone@FreeBSD.org> | 2002-04-01 10:45:09 +0000 |
---|---|---|
committer | dwmalone <dwmalone@FreeBSD.org> | 2002-04-01 10:45:09 +0000 |
commit | 3bbc58aa98d18a3a13ba8c3028396b3e16fe25dc (patch) | |
tree | 7414f9f48076b467e4f61ccd783ac8d510460a43 /usr.bin/kdump | |
parent | 8012d3553d73fb002097fdbaa5658fc4cd349822 (diff) | |
download | FreeBSD-src-3bbc58aa98d18a3a13ba8c3028396b3e16fe25dc.zip FreeBSD-src-3bbc58aa98d18a3a13ba8c3028396b3e16fe25dc.tar.gz |
Const the code.
Diffstat (limited to 'usr.bin/kdump')
-rw-r--r-- | usr.bin/kdump/mkioctls | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/kdump/mkioctls b/usr.bin/kdump/mkioctls index 0248f97..9745445 100644 --- a/usr.bin/kdump/mkioctls +++ b/usr.bin/kdump/mkioctls @@ -56,9 +56,11 @@ BEGIN { print "#include <stdio.h>" print "#include <cam/cam.h>" print "" + print "const char *ioctlname(register_t val);" + print "" print ioctl_includes print "" - print "char *" + print "const char *" print "ioctlname(register_t val)" print "{" print "" |