浏览代码

fixed typo in unicode-path

master
FelixBrendel 6 年前
父节点
当前提交
faaa452c05
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/built_ins.cpp

+ 1
- 1
src/built_ins.cpp 查看文件

@@ -89,7 +89,7 @@ namespace Slime {
#ifdef UNICODE
fullpath[0] = L'\0';
path_char* temp = char_to_path_char(Memory::get_c_str(file_name));
swprintf(fullpath, max_path_leno, L"%s%s", it, temp);
swprintf(fullpath, max_path_len, L"%s%s", it, temp);
free(temp);
#else
fullpath[0] = '\0';


正在加载...
取消
保存