Parcourir la source

fixed typo in unicode-path

master
FelixBrendel il y a 6 ans
Parent
révision
faaa452c05
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/built_ins.cpp

+ 1
- 1
src/built_ins.cpp Voir le fichier

@@ -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';


Chargement…
Annuler
Enregistrer