aboutsummaryrefslogtreecommitdiffstats
path: root/erts/etc/win32/erlsrv/erlsrv_main.c
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2013-06-04 12:38:31 +0200
committerDan Gudmundsson <[email protected]>2013-06-04 12:38:31 +0200
commite83fd8f94aba352b6cc055d2b4cfff007911b6d4 (patch)
tree66b22e7e79813d9ec2b0f5a9817a3908682a22ee /erts/etc/win32/erlsrv/erlsrv_main.c
parente00d6bbbabd7b76c050665fc417e81554a83e341 (diff)
parentee23d4b549618044d4a4f800db839483b359cb9f (diff)
downloadotp-e83fd8f94aba352b6cc055d2b4cfff007911b6d4.tar.gz
otp-e83fd8f94aba352b6cc055d2b4cfff007911b6d4.tar.bz2
otp-e83fd8f94aba352b6cc055d2b4cfff007911b6d4.zip
Merge branch 'dgud/win32_unicode'
* dgud/win32_unicode: erts: Windows, convert erlsrv to use widestring erts: Window start_erl now uses widechars/unicode Quote windows paths with spaces Handle space in paths in test Makefiles erts: Fix windows widestring args and paths in tools erts: Windows, use widechars for all paths during startup OTP-11135
Diffstat (limited to 'erts/etc/win32/erlsrv/erlsrv_main.c')
-rw-r--r--erts/etc/win32/erlsrv/erlsrv_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/etc/win32/erlsrv/erlsrv_main.c b/erts/etc/win32/erlsrv/erlsrv_main.c
index 920a4a1827..6d8e208fc8 100644
--- a/erts/etc/win32/erlsrv/erlsrv_main.c
+++ b/erts/etc/win32/erlsrv/erlsrv_main.c
@@ -25,7 +25,7 @@
#include "erlsrv_interactive.h"
#include "erlsrv_service.h"
-int main(int argc, char **argv){
+int wmain(int argc, wchar_t **argv){
if(argc > 1)
return interactive_main(argc,argv);
else