Index: client/Client/main.cpp
===================================================================
--- client/Client/main.cpp	(revision 68d94de7bbe815d1c0be9b36199a2411f78823b3)
+++ client/Client/main.cpp	(revision f3fb98084402f4c79dd6b4e9524e173b13faecc1)
@@ -74,6 +74,4 @@
 void closeGameSummary();
 
-void error(const char *);
-
 const float FPS = 60;
 const int SCREEN_W = 1024;
@@ -337,5 +335,5 @@
    server.sin_family = AF_INET;
    hp = gethostbyname(argv[1]);
-   if (hp==0)
+   if (hp == 0)
       error("Unknown host");
 
@@ -687,14 +685,4 @@
 }
 
-
-
-// need to make a function like this that works on windows
-void error(const char *msg)
-{
-   perror(msg);
-   shutdownWinSock();
-   exit(1);
-}
-
 void initWinSock()
 {
