diff options
-rw-r--r-- | src/sim/syscall_emul.hh | 2 |
1 files changed, 1 insertions, 1 deletions
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<typename OS::tgt_stat64> tgt_stat_buf; tgt_stat_buf tgt(addr); - convertStatBuf<tgt_stat_buf, hst_stat64>(tgt, host, fakeTTY); + convertStat64Buf<tgt_stat_buf, hst_stat64>(tgt, host, fakeTTY); tgt.copyOut(mem); } |