diff options
| author | Amlal <amlal.elmahrouss@icloud.com> | 2025-02-15 09:33:35 +0100 |
|---|---|---|
| committer | Amlal <amlal.elmahrouss@icloud.com> | 2025-02-15 09:34:51 +0100 |
| commit | fd27d5f1e4176926d613005f30feb209375d97ea (patch) | |
| tree | a18b18718b77ca9248f56936a3cef0112c24ce51 /public/tools/open/src/CommandLine.cc | |
| parent | 0db25895168df6ebb9bd8781e3ffd83d3323b398 (diff) | |
Impl and Patches:
- Private tools directory.
- SCI gets new API.
- Window Manager library.
- Steps version 2.
- Patch 'open' command.
- ATA.h fixes.
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'public/tools/open/src/CommandLine.cc')
| -rw-r--r-- | public/tools/open/src/CommandLine.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/public/tools/open/src/CommandLine.cc b/public/tools/open/src/CommandLine.cc index 86282059..a2439e40 100644 --- a/public/tools/open/src/CommandLine.cc +++ b/public/tools/open/src/CommandLine.cc @@ -36,12 +36,9 @@ int main(int argc, char* argv[]) Char base_path[FILE_MAX_LEN] = OPEN_APP_BASE_PATH; MmCopyMemory(base_path + MmStrLen(OPEN_APP_BASE_PATH), argv[i + 1], MmStrLen(argv[i + 1])); - Bool ret = RtlSpawnProcess(base_path, 0, nullptr, nullptr, 0); + UIntPtr ret = RtlSpawnProcess(base_path, 0, nullptr, nullptr, 0); - if (ret > 0) - return EXIT_SUCCESS; - - break; + return ret; } } |
