Skip to content

Commit

Permalink
correct WIN32 define
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalten committed Nov 23, 2016
1 parent a9f21c8 commit 950cf0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TUIO2/TcpReceiver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ int tcp_connect(int socket, const struct sockaddr *address, socklen_t address_le
return connect(socket, address, address_len);
}

#ifdef WIN32 && !defined (int32_t)
#if defined (WIN32) && !defined (int32_t)
typedef DWORD int32_t;
#endif

Expand Down

0 comments on commit 950cf0e

Please sign in to comment.