diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-30 10:04:19 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-30 10:04:19 +0200 |
| commit | 5229ca8ae190c0cb3db8d381a44be4113e81d5dc (patch) | |
| tree | 03af438c8ae325294e801adb6ee6aa80430d30cb /dev/ZBA/Sources | |
| parent | d87eb24271671f4d7d1298c6c4bbdf4e73f774f3 (diff) | |
A lot of filesystem improvements.
+ Save NextSibling field if catalog name, has parent name in it.
+ Upgrade NewFS to 1.28.
+ Fix strcmp inside Support.cxx
+ BootKit formatter can update the partition now, but only if NewFS.
+ Fix broken logging window.
Diffstat (limited to 'dev/ZBA/Sources')
| -rw-r--r-- | dev/ZBA/Sources/HEL/AMD64/Support.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/ZBA/Sources/HEL/AMD64/Support.cxx b/dev/ZBA/Sources/HEL/AMD64/Support.cxx index 667bbfda..aa93318b 100644 --- a/dev/ZBA/Sources/HEL/AMD64/Support.cxx +++ b/dev/ZBA/Sources/HEL/AMD64/Support.cxx @@ -71,7 +71,7 @@ EXTERN_C int strcmp(const char* whatToCheck, const char* whatToCheckRight) ++len; } - return whatToCheck[len] == whatToCheckRight[len] ? 0 : len; + return len; } /// @brief somthing specific to the Microsoft's ABI, When the stack grows too big. |
