Revert "datapath-windows: Support attribute OVS_KEY_ATTR_TCP_FLAGS"
[cascardo/ovs.git] / datapath-windows / ovsext / PacketParser.h
index 765819a..55d110f 100644 (file)
@@ -75,8 +75,11 @@ OvsGetTcpCtl(const NET_BUFFER_LIST *packet, // IN
 
 static UINT8
 OvsGetTcpFlags(const NET_BUFFER_LIST *packet,    // IN
+               const OvsFlowKey *key,   // IN
                const POVS_PACKET_HDR_INFO layers) // IN
 {
+    UNREFERENCED_PARAMETER(key); // should be removed later
+
     if (layers->isTcp) {
         return TCP_FLAGS(OvsGetTcpCtl(packet, layers));
     } else {