diff options
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 2beab7bce..8f1f9a3d0 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, opt.nozeroend) + return utils._bin2c(binaryfile, outputfile, opt.linewidth or 0x20, opt.nozeroend or false) end -- return module |
