diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-07-04 23:53:20 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-07-04 23:53:56 +0200 |
| commit | 175296c1e85d2747fb4b1063199e933978320231 (patch) | |
| tree | 161659f9af65a0c37802630209ec2654cfec1659 /DDK/KernelString.c | |
| parent | 16c2e132b39836a3e312f3bda7ee0e6de60d6dd9 (diff) | |
MHR-36: Running run_format.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'DDK/KernelString.c')
| -rw-r--r-- | DDK/KernelString.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/DDK/KernelString.c b/DDK/KernelString.c index 64116399..93c4cdf6 100644 --- a/DDK/KernelString.c +++ b/DDK/KernelString.c @@ -10,8 +10,10 @@ DK_EXTERN size_t kernelStringLength(const char* in) { - if (in == nil) return 0; - if (*in == 0) return 0; + if (in == nil) + return 0; + if (*in == 0) + return 0; size_t index = 0; |
