diff options
author | Patrik Nyblom <[email protected]> | 2010-11-04 17:55:55 +0100 |
---|---|---|
committer | Patrik Nyblom <[email protected]> | 2010-11-30 16:30:50 +0100 |
commit | b9101fe19b7f8d659d266152b36cc436b90c77a3 (patch) | |
tree | 8f5fe5695c36a8ce39c10eceea839d1f2710dd40 /erts/emulator/sys | |
parent | be63e483361c9a764f6a68df80e50fd7bd825e6b (diff) | |
download | otp-b9101fe19b7f8d659d266152b36cc436b90c77a3.tar.gz otp-b9101fe19b7f8d659d266152b36cc436b90c77a3.tar.bz2 otp-b9101fe19b7f8d659d266152b36cc436b90c77a3.zip |
Make Unicode filenames work on Windows
Diffstat (limited to 'erts/emulator/sys')
-rw-r--r-- | erts/emulator/sys/common/erl_sys_common_misc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/sys/common/erl_sys_common_misc.c b/erts/emulator/sys/common/erl_sys_common_misc.c index 581c14b6c6..7338ffc963 100644 --- a/erts/emulator/sys/common/erl_sys_common_misc.c +++ b/erts/emulator/sys/common/erl_sys_common_misc.c @@ -60,6 +60,7 @@ int erts_get_user_requested_filename_encoding(void) void erts_init_sys_common_misc(void) { #if defined(__WIN32__) + /* win_efile will totally fail if this is not set. */ filename_encoding = ERL_FILENAME_WIN_WCHAR; #else if (user_filename_encoding != ERL_FILENAME_UNKNOWN) { |