summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2013-02-22 13:26:10 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2013-02-22 13:26:10 +0100
commita9fe13c9437707fa132fde4e51a20d88381e7430 (patch)
treee1949f82be3db26d69c910610461e967d552b544 /io.c
parent40d63b9a92e049986fce1fb91cca10fdd3d3a64a (diff)
downloadstrace-a9fe13c9437707fa132fde4e51a20d88381e7430.tar.gz
strace-a9fe13c9437707fa132fde4e51a20d88381e7430.tar.bz2
strace-a9fe13c9437707fa132fde4e51a20d88381e7430.tar.xz
Create and use struct_sysent and struct_ioctlent typedefs.
This is a preparatory mass replace patch with no code changes. The future change will need to typedef sysent to sysent0, which results in compile failures when "struct sysent" string gets mangled into "struct sysent0". Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
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 f0f0756..0e9bb32 100644
--- a/io.c
+++ b/io.c
@@ -383,7 +383,7 @@ sys_vmsplice(struct tcb *tcp)
int
sys_ioctl(struct tcb *tcp)
{
- const struct ioctlent *iop;
+ const struct_ioctlent *iop;
if (entering(tcp)) {
printfd(tcp, tcp->u_arg[0]);