From: Roland McGrath Date: Thu, 5 Jul 2007 19:01:17 +0000 (+0000) Subject: 2007-03-21 Andreas Schwab X-Git-Tag: v4.5.18~214 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=359c8ed57c255be18299f383cb7e696fa5d62b63;p=strace 2007-03-21 Andreas Schwab * file.c (sys_newfstatat): Don't use printstat64 on ppc64. --- diff --git a/file.c b/file.c index 3d733890..92621797 100644 --- a/file.c +++ b/file.c @@ -1193,7 +1193,7 @@ sys_newfstatat(struct tcb *tcp) printpath(tcp, tcp->u_arg[1]); tprintf(", "); } else { -#ifdef HAVE_STAT64 +#if defined HAVE_STAT64 && !(defined POWERPC && defined __powerpc64__) printstat64(tcp, tcp->u_arg[2]); #else printstat(tcp, tcp->u_arg[2]);