aboutsummaryrefslogtreecommitdiffstats
path: root/capture-wpcap.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2003-12-21 12:19:39 +0000
committerUlf Lamping <ulf.lamping@web.de>2003-12-21 12:19:39 +0000
commit3b77bfee59b57f98ee1f9cc6fcb12c3b7aff5846 (patch)
tree5a8d0f960cdd56fc521173c48958cd6f59fc6220 /capture-wpcap.c
parent6126aad3b2b66f53e2c098ed294605d361a6e6c8 (diff)
removed some MSVC warnings (moved pcap.h before glib.h)
svn path=/trunk/; revision=9393
Diffstat (limited to 'capture-wpcap.c')
-rw-r--r--capture-wpcap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/capture-wpcap.c b/capture-wpcap.c
index d9ece52ba7..ac43078d73 100644
--- a/capture-wpcap.c
+++ b/capture-wpcap.c
@@ -3,7 +3,7 @@
* time, so that we only need one Ethereal binary and one Tethereal binary
* for Windows, regardless of whether WinPcap is installed or not.
*
- * $Id: capture-wpcap.c,v 1.6 2003/10/10 09:48:54 guy Exp $
+ * $Id: capture-wpcap.c,v 1.7 2003/12/21 12:18:59 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -28,13 +28,13 @@
# include "config.h"
#endif
-#include <glib.h>
-#include <gmodule.h>
-
#ifdef HAVE_LIBPCAP
#include <pcap.h>
#endif
+#include <glib.h>
+#include <gmodule.h>
+
#include "pcap-util.h"
#include "pcap-util-int.h"