From cc21f862e2d6ad6ba8d5332d6bbc05e58e55bfa0 Mon Sep 17 00:00:00 2001 From: "Timothy M. Jones" Date: Sat, 24 Oct 2009 10:53:58 -0700 Subject: [PATCH] syscall: Fix conversion of the stat64 buffer during system calls. --- src/sim/syscall_emul.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sim/syscall_emul.hh b/src/sim/syscall_emul.hh index f5e8a02e5..21f8201c8 100644 --- a/src/sim/syscall_emul.hh +++ b/src/sim/syscall_emul.hh @@ -469,7 +469,7 @@ copyOutStat64Buf(TranslatingPort * mem, Addr addr, { typedef TypedBufferArg tgt_stat_buf; tgt_stat_buf tgt(addr); - convertStatBuf(tgt, host, fakeTTY); + convertStat64Buf(tgt, host, fakeTTY); tgt.copyOut(mem); }