summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>2004-09-04 03:53:10 +0000
committerRoland McGrath <roland@redhat.com>2004-09-04 03:53:10 +0000
commitee36ce19e03e08f4b692570090ee58b72d2f0f50 (patch)
tree61173ef0807c28c3944b87d7a145b65781f34ef1 /io.c
parent4ee6e6970d777fb47d2526908fda4d91571c8933 (diff)
downloadstrace-ee36ce19e03e08f4b692570090ee58b72d2f0f50.tar.gz
strace-ee36ce19e03e08f4b692570090ee58b72d2f0f50.tar.bz2
strace-ee36ce19e03e08f4b692570090ee58b72d2f0f50.tar.xz
2004-09-03 Roland McGrath <roland@redhat.com>
* syscall.c (sysent0, sysent1, sysent2, sysent): Add const to defn. (nsyscalls0, nsyscalls1, nsyscalls2): Likewise. (errnoent0, errnoent1, errnoent2, errnoent): Likewise. (nerrnos0, nerrnos1, nerrnos2): Likewise. * signal.c (signalent0, signalent1, signalent2): Likewise. (nsignals0, nsignals1, nsignals2): Likewise. (signame): LIkewise. * ioctl.c (ioctlent0, ioctlent1, ioctlent2): Likewise. (nioctlents0, nioctlents1, nioctlents2): Likewise. (ioctl_lookup, ioctl_next_match): Likewise. * defs.h: Update decls. * io.c (sys_ioctl): Update users.
Diffstat (limited to 'io.c')
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index dd37638..086d028 100644
--- a/io.c
+++ b/io.c
@@ -353,7 +353,7 @@ int
sys_ioctl(tcp)
struct tcb *tcp;
{
- struct ioctlent *iop;
+ const struct ioctlent *iop;
if (entering(tcp)) {
tprintf("%ld, ", tcp->u_arg[0]);