diff options
author | Roland McGrath <roland@redhat.com> | 2004-09-04 03:53:10 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2004-09-04 03:53:10 +0000 |
commit | ee36ce19e03e08f4b692570090ee58b72d2f0f50 (patch) | |
tree | 61173ef0807c28c3944b87d7a145b65781f34ef1 /io.c | |
parent | 4ee6e6970d777fb47d2526908fda4d91571c8933 (diff) | |
download | strace-ee36ce19e03e08f4b692570090ee58b72d2f0f50.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]); |