summaryrefslogtreecommitdiff
path: root/win32/win32.c
diff options
context:
space:
mode:
Diffstat (limited to 'win32/win32.c')
-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);