diff options
author | Alin Serdean <aserdean@cloudbasesolutions.com> | 2015-09-22 19:53:31 +0000 |
---|---|---|
committer | Gurucharan Shetty <gshetty@nicira.com> | 2015-09-23 07:52:58 -0700 |
commit | 9880874b0636660d72617ec29604380896c003d7 (patch) | |
tree | dacc3ce70b720c43fe5e03f29f25f0f9a302fa30 /lib | |
parent | f821fe7f09ad0262b63c41f637aa77e02fa9ebfa (diff) | |
download | openvswitch-9880874b0636660d72617ec29604380896c003d7.tar.gz |
Include headers when using ovs_rundir
This patch adds an additional include file while compiling under MSVC.
Found by compiling under MSVC x64 and hitting the following problem:
http://stackoverflow.com/questions/23144151/64-bit-function-returns-32-bit-pointer
Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
Signed-off-by: Gurucharan Shetty <gshetty@nicira.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/stream-tcp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/stream-tcp.c b/lib/stream-tcp.c index ac42924b3..fc5a60644 100644 --- a/lib/stream-tcp.c +++ b/lib/stream-tcp.c @@ -76,6 +76,8 @@ const struct stream_class tcp_stream_class = { }; #ifdef _WIN32 +#include "dirs.h" + static int windows_open(const char *name, char *suffix, struct stream **streamp, uint8_t dscp) |