diff options
author | Alexis211 <alexis211@gmail.com> | 2009-12-18 15:42:27 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-12-18 15:42:27 +0100 |
commit | 66f21576d9f9dee507995c520463c5fa94b66a49 (patch) | |
tree | b267db97223a554ff5a2864ea4576cad6ba2e366 | |
parent | 4f9078c0f06e0cf0cb7bb164fc72fb9918c68e6a (diff) | |
download | Melon-66f21576d9f9dee507995c520463c5fa94b66a49.tar.gz Melon-66f21576d9f9dee507995c520463c5fa94b66a49.zip |
Nothing, really
-rwxr-xr-x | CopyToFDD.sh | 2 | ||||
-rw-r--r-- | Source/Applications/Shell/Shell.class.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CopyToFDD.sh b/CopyToFDD.sh index d1fcc0b..7b8459a 100755 --- a/CopyToFDD.sh +++ b/CopyToFDD.sh @@ -29,4 +29,4 @@ cp Source/Applications/Demos/GOL Mount/Applications/Demos/GOL.app cp Source/Applications/Demos/asmdemo Mount/Applications/Demos/ASM.dem #echo "*** Launching a BASH shell, if you want to do any maintenance ***" -bash || exit 0 +#bash || exit 0 diff --git a/Source/Applications/Shell/Shell.class.cpp b/Source/Applications/Shell/Shell.class.cpp index 4e0f18b..3d406c8 100644 --- a/Source/Applications/Shell/Shell.class.cpp +++ b/Source/Applications/Shell/Shell.class.cpp @@ -66,7 +66,7 @@ int Shell::run() { } else if (cmd[0] == "free") { outvt << "Free RAM : " << (s64int)Sys::freeRam() << " Kio of " << (s64int)Sys::totalRam() << " Kio\n"; } else if (cmd[0] == "uid") { - outvt << "User ID : " << (s64int)(Process::get().getUid()) << "\n"; + outvt << "User ID : " << (s64int)(pr.getUid()) << "\n"; } else if (cmd[0] == "help") { while (cmd.size() > 1) cmd.pop(); cmd.push("/Applications/Shell/Help.txt"); |