diff options
author | Bruce Yinhe <[email protected]> | 2014-10-06 14:25:14 +0200 |
---|---|---|
committer | Bruce Yinhe <[email protected]> | 2014-10-06 14:25:14 +0200 |
commit | 9e48b1fd13d9b5adfbeeda3e9137c4e2b56c37e4 (patch) | |
tree | d44aac0396b4a533674a3373a7f153b921363fa6 /erts/etc | |
parent | 5625b21b1f5c11ec3624d67f8a3f0b7ba3415d9d (diff) | |
parent | c9b40bf1c30d60f76b6954c0d35bee82912531a0 (diff) | |
download | otp-9e48b1fd13d9b5adfbeeda3e9137c4e2b56c37e4.tar.gz otp-9e48b1fd13d9b5adfbeeda3e9137c4e2b56c37e4.tar.bz2 otp-9e48b1fd13d9b5adfbeeda3e9137c4e2b56c37e4.zip |
Merge branch 'jjhoo/win32-fix-unreachable-code' into maint
OTP-12222
* jjhoo/win32-fix-unreachable-code:
Fix if-clauses that make code to be unreachable
Diffstat (limited to 'erts/etc')
-rw-r--r-- | erts/etc/win32/Install.c | 2 | ||||
-rw-r--r-- | erts/etc/win32/erl.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/erts/etc/win32/Install.c b/erts/etc/win32/Install.c index 500fd166f8..9d85d642ab 100644 --- a/erts/etc/win32/Install.c +++ b/erts/etc/win32/Install.c @@ -80,7 +80,7 @@ int wmain(int argc, wchar_t **argv) } } if (root == NULL) { - if (module = NULL) { + if (module == NULL) { fprintf(stderr, "Cannot GetModuleHandle()\n"); exit(1); } diff --git a/erts/etc/win32/erl.c b/erts/etc/win32/erl.c index 1d116bf36e..772b668586 100644 --- a/erts/etc/win32/erl.c +++ b/erts/etc/win32/erl.c @@ -264,7 +264,7 @@ static void get_parameters(void) int len; - if (module = NULL) { + if (module == NULL) { error("Cannot GetModuleHandle()"); } |