diff options
author | Constantin Kaplinsky <const@tightvnc.com> | 2005-09-28 16:46:56 +0000 |
---|---|---|
committer | Constantin Kaplinsky <const@tightvnc.com> | 2005-09-28 16:46:56 +0000 |
commit | 4ae8b8e9d31b99a8c8882834f7d7f21990e5a346 (patch) | |
tree | 587c53469695425856860b664ee6b589dbfe3db3 /rdr | |
parent | d09b6d0d43d424d4b8a94c5980b294bc70996a82 (diff) | |
download | tigervnc-4ae8b8e9d31b99a8c8882834f7d7f21990e5a346.tar.gz tigervnc-4ae8b8e9d31b99a8c8882834f7d7f21990e5a346.zip |
Fixed a compilation problem caused by including winsock2.h after windows.h.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@337 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'rdr')
-rw-r--r-- | rdr/Exception.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rdr/Exception.cxx b/rdr/Exception.cxx index 1fcd154f..7d387119 100644 --- a/rdr/Exception.cxx +++ b/rdr/Exception.cxx @@ -18,8 +18,8 @@ #include <rdr/Exception.h> #ifdef _WIN32 #include <tchar.h> -#include <windows.h> #include <winsock2.h> +#include <windows.h> #endif using namespace rdr; |