aboutsummaryrefslogtreecommitdiffstats
path: root/win32
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-20 02:19:19 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-08-20 02:19:19 +0000
commit2da4005d736e2885ff23cf9c6ef4c6047b1db47b (patch)
tree22ad2807411a2797ec4f19da4212bf8843197e18 /win32
parent599c314f6a71150a04b3d30b8d3e09475e4de0a5 (diff)
downloadruby-2da4005d736e2885ff23cf9c6ef4c6047b1db47b.tar.gz
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
Diffstat (limited to 'win32')
-rw-r--r--win32/win32.c4
1 files changed, 2 insertions, 2 deletions
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);