summaryrefslogtreecommitdiff
path: root/xmake
diff options
context:
space:
mode:
authorruki <[email protected]>2025-12-10 00:31:09 +0800
committerruki <[email protected]>2025-12-10 00:31:09 +0800
commit628394671673da0f8bba98ff64f61fc405b63206 (patch)
tree63f4fd666a61af25bf8321adbaadbb62b63fb6f1 /xmake
parentc6ffeca9e14d29e0880826b3caac7a4d1ee4a3d1 (diff)
fix coff readsyms
Diffstat (limited to 'xmake')
-rw-r--r--xmake/core/sandbox/modules/utils.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/sandbox/modules/utils.lua b/xmake/core/sandbox/modules/utils.lua
index 1be9c7c08..df90492be 100644
--- a/xmake/core/sandbox/modules/utils.lua
+++ b/xmake/core/sandbox/modules/utils.lua
@@ -150,7 +150,7 @@ function sandbox_utils.assert(value, format, ...)
end
-- generate c/c++ code from the binary file (deprecated, use binutils.bin2c instead)
- function sandbox_utils.bin2c(binaryfile, outputfile, opt)
+function sandbox_utils.bin2c(binaryfile, outputfile, opt)
deprecated.add("binutils.bin2c", "utils.bin2c")
return binutils.bin2c(binaryfile, outputfile, opt)
end