From c8e3356a1d50b83176505e7e834017f66b90d33d Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Wed, 15 Jan 2025 13:28:20 +0100 Subject: [PATCH] Typo in py --- user/usys.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/user/usys.py b/user/usys.py index 896bf6d..ad4e4c7 100755 --- a/user/usys.py +++ b/user/usys.py @@ -49,16 +49,16 @@ with open("kernel/syscall.h", "r") as sfile: calls = set(["SYS_" + call for call in syscalls]) if header_calls == calls: - print("All items match in both sets.") + print("#All items match in both sets.") else: missing_in_calls = header_calls - calls missing_in_header_calls = calls - header_calls if missing_in_calls: - print("These items are in header_calls but not in calls:", missing_in_calls) + print("#These items are in header_calls but not in calls:", missing_in_calls) if missing_in_header_calls: print( - "These items are in calls but not in header_calls:", + "#These items are in calls but not in header_calls:", missing_in_header_calls, )