summaryrefslogtreecommitdiff
path: root/xmake/modules/utils/binary/readsyms.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/modules/utils/binary/readsyms.lua')
-rw-r--r--xmake/modules/utils/binary/readsyms.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/utils/binary/readsyms.lua b/xmake/modules/utils/binary/readsyms.lua
index 7225177e9..6aaa414d0 100644
--- a/xmake/modules/utils/binary/readsyms.lua
+++ b/xmake/modules/utils/binary/readsyms.lua
@@ -56,14 +56,14 @@ function dump(binaryfile)
-- calculate column widths
local type_width = math.max(max_type_len, 4)
local name_width = math.max(max_name_len, 4)
-
+
-- print header
print("")
print("Symbols:")
local header_format = " %-" .. type_width .. "s %s"
print(string.format(header_format, "TYPE", "NAME"))
print(string.rep("-", 80))
-
+
-- print symbols
local format_str = " %-" .. type_width .. "s %s"