diff options
Diffstat (limited to 'src/kern/operatingsystem.cc')
-rw-r--r-- | src/kern/operatingsystem.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/kern/operatingsystem.cc b/src/kern/operatingsystem.cc index 62fcdba7a..ce4092c4a 100644 --- a/src/kern/operatingsystem.cc +++ b/src/kern/operatingsystem.cc @@ -33,9 +33,10 @@ #include "kern/operatingsystem.hh" int -OperatingSystem::openSpecialFile(std::string path, LiveProcess *process, ThreadContext *tc) +OperatingSystem::openSpecialFile(std::string path, LiveProcess *process, + ThreadContext *tc) { - warn("Attempting to open special file: %s. Ignorning. Simulation may" + warn("Attempting to open special file: %s. Ignoring. Simulation may" " take un-expected code path or be non-deterministic until proper" " handling is implemented.\n", path.c_str()); return -1; |