summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
authorJohn Hughes <john@Calva.COM>2001-03-08 14:40:06 +0000
committerJohn Hughes <john@Calva.COM>2001-03-08 14:40:06 +0000
commit0c79e01d74a05476f90eb4815882181fecabe3f5 (patch)
tree751425f022cbdcdaeeebfbb0e77bf64f93440912 /io.c
parent70623be853b5524d87d980ac3d611b11890800ea (diff)
downloadstrace-0c79e01d74a05476f90eb4815882181fecabe3f5.tar.gz
strace-0c79e01d74a05476f90eb4815882181fecabe3f5.tar.bz2
strace-0c79e01d74a05476f90eb4815882181fecabe3f5.tar.xz
replace wimpy get64 by powerful LONG_LONG :-)
Diffstat (limited to 'io.c')
-rw-r--r--io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/io.c b/io.c
index 4bb0002..d38d1fe 100644
--- a/io.c
+++ b/io.c
@@ -292,7 +292,7 @@ struct tcb *tcp;
else
printstr(tcp, tcp->u_arg[1], tcp->u_rval);
tprintf(", %lu, %#llx", tcp->u_arg[2],
- get64(tcp->u_arg[3], tcp->u_arg[4]));
+ LONG_LONG(tcp->u_arg[3], tcp->u_arg[4]));
}
return 0;
}
@@ -306,7 +306,7 @@ struct tcb *tcp;
tprintf("%ld, ", tcp->u_arg[0]);
printstr(tcp, tcp->u_arg[1], tcp->u_arg[2]);
tprintf(", %lu, %#llx", tcp->u_arg[2],
- get64(tcp->u_arg[3], tcp->u_arg[4]));
+ LONG_LONG(tcp->u_arg[3], tcp->u_arg[4]));
}
return 0;
}