Browse Source

Fix redeclaration warning on opensolaris

Tatsuhiro Tsujikawa 12 years ago
parent
commit
3616b75e8a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/GZipFile.h

+ 2 - 2
src/GZipFile.h

@@ -36,10 +36,10 @@
 #ifndef D_GZIP_FILE_H
 #define D_GZIP_FILE_H
 
-#include <zlib.h>
-
 #include "IOFile.h"
 
+#include <zlib.h>
+
 namespace aria2 {
 
 class GZipFile: public IOFile {