2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-30 22:05:19 +00:00

datapath-windows: Revert unrelated change to ovs-atomic.h

There was an unwanted change to ovs-atomic.h header made by the
recirculation patch, ee25964a60 commit.
This patch reverts that change.

Signed-off-by: Sorin Vinturis <svinturis@cloudbasesolutions.com>
Acked-by: Nithin Raju <nithin@vmware.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
This commit is contained in:
Sorin Vinturis
2016-03-25 15:56:01 +00:00
committed by Ben Pfaff
parent 7fc28c50c0
commit db974a33c0

View File

@@ -333,7 +333,7 @@
#include "ovs-atomic-i586.h"
#elif HAVE_GCC4_ATOMICS
#include "ovs-atomic-gcc4+.h"
#elif _MSC_VER && _WIN32
#elif _MSC_VER && _M_IX86 >= 500
#include "ovs-atomic-msvc.h"
#else
/* ovs-atomic-pthreads implementation is provided for portability.