diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-08-20 02:19:19 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-08-20 02:19:19 +0000 |
commit | 51d30645a241a4441358d196165b3f7e3560df71 () | |
tree | 22ad2807411a2797ec4f19da4212bf8843197e18 | |
parent | ea293952c549c61265db6ab20071fe9d83b930f1 (diff) |
win32.c: no newline for rb_fatal
* win32/win32.c (StartSockets): rb_fatal does not need a newline at the end. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55971 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | win32/win32.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -697,9 +697,9 @@ StartSockets(void) // version = MAKEWORD(2, 0); if (WSAStartup(version, &retdata)) - rb_fatal ("Unable to locate winsock library!\n"); if (LOBYTE(retdata.wVersion) != 2) - rb_fatal("could not find version 2 of winsock dll\n"); InitializeCriticalSection(&select_mutex); |