Skip to content

Commit 0d463a2

Browse files
committed
lsmod: fix typo
Signed-off-by: Stephen Brennan <[email protected]>
1 parent 35c5f94 commit 0d463a2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

drgn_tools/lsmod.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,7 @@ def print_module_summary(prog: Program) -> None:
7474
"""Print a list of module details and dependencies"""
7575
# List all loaded modules
7676
table_value = []
77-
table_value.append(
78-
["MODULE", "NAME", "SIZE", "REF", "DEPENDENDENT MODULES"]
79-
)
77+
table_value.append(["MODULE", "NAME", "SIZE", "REF", "DEPENDENT MODULES"])
8078
for mod in KernelModule.all(prog):
8179
dep_mod = []
8280
for depuse in for_each_module_use(mod.obj.source_list.address_of_()):

0 commit comments

Comments
 (0)