summaryrefslogtreecommitdiffhomepage
path: root/dev/ZKAKit/CFKit
diff options
context:
space:
mode:
authorAmlal <amlal.elmahrouss@icloud.com>2024-11-02 07:46:45 +0100
committerAmlal <amlal.elmahrouss@icloud.com>2024-11-02 07:49:04 +0100
commitf5e656424dc41ff93c67bcc8139a76d40f525efc (patch)
treef701847fb8d2bec8a31c1f24f86afc5f2f338e64 /dev/ZKAKit/CFKit
parent358379efc79bdda8b5742b82b95c45063184d76f (diff)
IMP: minOSKrnl commit 1039.
- KernelKit: New allocation limit in Heap.cc - KernelKit: Add Matches method for password validation. - KernelKit: Scheduler and Thread have been improved with new validations on frame. - META: Ran format command. - NewKit: Add new Ptr8 type for UInt8* types. - MBCI: Fix codestyle. Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/ZKAKit/CFKit')
-rw-r--r--dev/ZKAKit/CFKit/GUIDWizard.h2
-rw-r--r--dev/ZKAKit/CFKit/Property.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/dev/ZKAKit/CFKit/GUIDWizard.h b/dev/ZKAKit/CFKit/GUIDWizard.h
index b8a85a04..4c5c0c1d 100644
--- a/dev/ZKAKit/CFKit/GUIDWizard.h
+++ b/dev/ZKAKit/CFKit/GUIDWizard.h
@@ -19,6 +19,6 @@ namespace CFKit::XRN::Version1
{
using namespace Kernel;
- Ref<GUIDSequence*> cf_make_sequence(const ArrayList<UInt32>& seq);
+ Ref<GUIDSequence*> cf_make_sequence(const ArrayList<UInt32>& seq);
ErrorOr<Ref<Kernel::KString>> cf_try_guid_to_string(Ref<GUIDSequence*>& guid);
} // namespace CFKit::XRN::Version1
diff --git a/dev/ZKAKit/CFKit/Property.h b/dev/ZKAKit/CFKit/Property.h
index fc9855ed..a88a02f5 100644
--- a/dev/ZKAKit/CFKit/Property.h
+++ b/dev/ZKAKit/CFKit/Property.h
@@ -35,10 +35,10 @@ namespace CFKit
bool StringEquals(KString& name);
PropertyId& GetValue();
- KString& GetKey();
+ KString& GetKey();
private:
- KString fName{kMaxPropLen};
+ KString fName{kMaxPropLen};
PropertyId fAction{No};
};