|
From: <gb...@us...> - 2008-07-03 08:14:59
|
Revision: 259
http://gearbox.svn.sourceforge.net/gearbox/?rev=259&view=rev
Author: gbiggs
Date: 2008-07-03 01:15:02 -0700 (Thu, 03 Jul 2008)
Log Message:
-----------
Header file in the wrong #if block
Modified Paths:
--------------
gearbox/trunk/submitted/flexiport/logfile.cpp
Modified: gearbox/trunk/submitted/flexiport/logfile.cpp
===================================================================
--- gearbox/trunk/submitted/flexiport/logfile.cpp 2008-07-03 07:52:47 UTC (rev 258)
+++ gearbox/trunk/submitted/flexiport/logfile.cpp 2008-07-03 08:15:02 UTC (rev 259)
@@ -28,10 +28,11 @@
#include "flexiport.h"
#include "logfile.h"
-#if !defined (WIN32)
+#if defined (WIN32)
+ #include <windows.h> // For Sleep()
+#else
#include <arpa/inet.h>
#include <unistd.h>
- #include <windows.h> // For Sleep()
#endif
#include <sys/types.h>
#include <sys/stat.h>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|