瀏覽代碼

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 #ifdef UNICODE
fullpath[0] = L'\0'; fullpath[0] = L'\0';
path_char* temp = char_to_path_char(Memory::get_c_str(file_name)); 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); free(temp);
#else #else
fullpath[0] = '\0'; fullpath[0] = '\0';


Loading…
取消
儲存