From 51d30645a241a4441358d196165b3f7e3560df71 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 20 Aug 2016 02:19:19 +0000 Subject: 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 --- win32/win32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'win32/win32.c') diff --git a/win32/win32.c b/win32/win32.c index 8204d72e60..4e07564f95 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -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); -- cgit v1.2.3