diff options
author | trimill <trimill@trimillxyz.org> | 2024-01-31 22:30:35 -0500 |
---|---|---|
committer | trimill <trimill@trimillxyz.org> | 2024-02-01 17:01:20 -0500 |
commit | b5b904cfc9bf22ce9f6c3cfcf110e4559ef0994a (patch) | |
tree | 2b352192a63e75fa921ac82ef370adb7da49434d /arch/amd64 | |
parent | display mem formatted (diff) | |
download | corn-b5b904cfc9bf22ce9f6c3cfcf110e4559ef0994a.tar.gz corn-b5b904cfc9bf22ce9f6c3cfcf110e4559ef0994a.tar.bz2 corn-b5b904cfc9bf22ce9f6c3cfcf110e4559ef0994a.zip |
follow the corn style guide
Diffstat (limited to 'arch/amd64')
-rwxr-xr-x | arch/amd64/sym_lookup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/amd64/sym_lookup.py b/arch/amd64/sym_lookup.py index 9619820..e750344 100755 --- a/arch/amd64/sym_lookup.py +++ b/arch/amd64/sym_lookup.py @@ -14,8 +14,8 @@ class Symbol: name: str readelf = subprocess.run( - ["readelf", "-s", "build/kernel.bin"], - capture_output=True, + ["readelf", "-s", "build/kernel.bin"], + capture_output=True, encoding="UTF-8" ) |