datapath-windows: Revert unrelated change to ovs-atomic.h
authorSorin Vinturis <svinturis@cloudbasesolutions.com>
Fri, 25 Mar 2016 15:56:01 +0000 (15:56 +0000)
committerBen Pfaff <blp@ovn.org>
Fri, 25 Mar 2016 17:01:42 +0000 (10:01 -0700)
There was an unwanted change to ovs-atomic.h header made by the
recirculation patch, ee25964a60c6b2c6e60a4c5fbfc9e90cf304f970 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>
lib/ovs-atomic.h

index 2046ea9..b38c9ef 100644 (file)
         #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.