summaryrefslogtreecommitdiff
path: root/src/arch/mips
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/mips')
-rw-r--r--src/arch/mips/linux/linux.cc2
-rw-r--r--src/arch/mips/linux/linux.hh2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/mips/linux/linux.cc b/src/arch/mips/linux/linux.cc
index 8c4e3bf8c..ce1d7664a 100644
--- a/src/arch/mips/linux/linux.cc
+++ b/src/arch/mips/linux/linux.cc
@@ -33,7 +33,7 @@
#include "arch/mips/linux/linux.hh"
// open(2) flags translation table
-OpenFlagTransTable MipsLinux::openFlagTable[] = {
+SyscallFlagTransTable MipsLinux::openFlagTable[] = {
#ifdef _MSC_VER
{ MipsLinux::TGT_O_RDONLY, _O_RDONLY },
{ MipsLinux::TGT_O_WRONLY, _O_WRONLY },
diff --git a/src/arch/mips/linux/linux.hh b/src/arch/mips/linux/linux.hh
index 38f958c89..50a0362da 100644
--- a/src/arch/mips/linux/linux.hh
+++ b/src/arch/mips/linux/linux.hh
@@ -39,7 +39,7 @@ class MipsLinux : public Linux
/// This table maps the target open() flags to the corresponding
/// host open() flags.
- static OpenFlagTransTable openFlagTable[];
+ static SyscallFlagTransTable openFlagTable[];
/// Number of entries in openFlagTable[].
static const int NUM_OPEN_FLAGS;