diff options
| author | ruki <[email protected]> | 2024-10-25 22:53:02 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2024-10-25 22:53:02 +0800 |
| commit | 9ab3585df20a4b59e75675d86eb488154c0449e9 (patch) | |
| tree | e1fbe36e6d50d451ec71237cfa2f2069fd7dde28 /xmake/core/base/utils.lua | |
| parent | 82c5c02fdf20a93ef3073f475b6c449dd7cba24b (diff) | |
improve linewidth
Diffstat (limited to 'xmake/core/base/utils.lua')
| -rw-r--r-- | xmake/core/base/utils.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/base/utils.lua b/xmake/core/base/utils.lua index 8f1f9a3d0..99add99bc 100644 --- a/xmake/core/base/utils.lua +++ b/xmake/core/base/utils.lua @@ -324,7 +324,7 @@ end -- generate c/c++ code from the binary file function utils.bin2c(binaryfile, outputfile, opt) opt = opt or {} - return utils._bin2c(binaryfile, outputfile, opt.linewidth or 0x20, opt.nozeroend or false) + return utils._bin2c(binaryfile, outputfile, opt.linewidth or 32, opt.nozeroend or false) end -- return module |
