diff options
Diffstat (limited to 'src/arch/power')
-rw-r--r-- | src/arch/power/linux/linux.cc | 2 | ||||
-rw-r--r-- | src/arch/power/linux/linux.hh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/power/linux/linux.cc b/src/arch/power/linux/linux.cc index b614c0dcb..963233d83 100644 --- a/src/arch/power/linux/linux.cc +++ b/src/arch/power/linux/linux.cc @@ -34,7 +34,7 @@ #include "arch/power/linux/linux.hh" // open(2) flags translation table -OpenFlagTransTable PowerLinux::openFlagTable[] = { +SyscallFlagTransTable PowerLinux::openFlagTable[] = { #ifdef _MSC_VER { PowerLinux::TGT_O_RDONLY, _O_RDONLY }, { PowerLinux::TGT_O_WRONLY, _O_WRONLY }, diff --git a/src/arch/power/linux/linux.hh b/src/arch/power/linux/linux.hh index effb39277..41b2fb6de 100644 --- a/src/arch/power/linux/linux.hh +++ b/src/arch/power/linux/linux.hh @@ -100,7 +100,7 @@ class PowerLinux : 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; |