From 05abd505efe95f40ee3af0cd9d5c199533366225 Mon Sep 17 00:00:00 2001 From: Jan Date: Wed, 13 May 2026 22:32:43 +0200 Subject: [PATCH] Improve comments for clarity in find.c Clarified comments for variable 'type' and 'dir'. --- src/userland/cli/find.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/userland/cli/find.c b/src/userland/cli/find.c index ba723f5..cae8dee 100644 --- a/src/userland/cli/find.c +++ b/src/userland/cli/find.c @@ -2,9 +2,9 @@ #include #include "syscall.h" -int type = 0; // 0:nothing 1:file 2:dir +int type = 0; // 0 is nothing, 1 is file, 2 is dir char *name = NULL; -char *dir = "."; +char *dir = "."; // random char bc it needs to have anything in it // match exact name int match(const char *a, const char *b) {