Typo in py

This commit is contained in:
Imbus 2025-01-15 13:28:20 +01:00
parent c9665ce5bd
commit c8e3356a1d

View file

@ -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,
)