Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mono / utils / networking-windows.c
index ea9edff0a30df111fcad50b67c5e3275e0e3984e..cf8200c816401cdf270a393111ecca6149b9faee 100644 (file)
@@ -1,5 +1,6 @@
-/*
- * networking-windows.c: Windows-specific networking implementations
+/**
+ * \file
+ * Windows-specific networking implementations
  *
  * Author:
  *     Alexander Köplinger (alex.koeplinger@outlook.com)
@@ -22,7 +23,7 @@ mono_networking_init (void)
        WSADATA wsadata;
        int err;
 
-       err = WSAStartup (MAKEWORD (2,0), &wsadata);
+       err = WSAStartup (2 /* 2.0 */, &wsadata);
        if(err)
                g_error ("%s: Couldn't initialise networking", __func__);
 }