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
This commit is contained in:
nobu 2016-08-20 02:19:19 +00:00
parent ea293952c5
commit 51d30645a2

View File

@ -697,9 +697,9 @@ StartSockets(void)
//
version = MAKEWORD(2, 0);
if (WSAStartup(version, &retdata))
rb_fatal ("Unable to locate winsock library!\n");
rb_fatal("Unable to locate winsock library!");
if (LOBYTE(retdata.wVersion) != 2)
rb_fatal("could not find version 2 of winsock dll\n");
rb_fatal("could not find version 2 of winsock dll");
InitializeCriticalSection(&select_mutex);