Linux: Remove unnecessary int cast

This commit is contained in:
Mike Auty
2025-01-02 11:26:21 +00:00
parent 9c02f0d12a
commit 97b93abe43
+1 -1
View File
@@ -166,7 +166,7 @@ class ABCKmsg(ABC):
def get_caller_text(self, caller_id):
caller_name = "CPU" if caller_id & 0x80000000 else "Task"
caller = f"{caller_name}({int(caller_id & ~0x80000000)})"
caller = f"{caller_name}({caller_id & ~0x80000000})"
return caller
def get_prefix(self, obj) -> Tuple[int, int, str, str]: