From aded80d588bbc959c63579c609755638129f8098 Mon Sep 17 00:00:00 2001 From: Sorin Vinturis Date: Mon, 24 Nov 2014 16:26:00 +0000 Subject: [PATCH] datapath-windows: Fixed Release broken build. The release configurations of the OVSEXT project were not compiling. This was due to a warning that was treated as error. Fixed that. I did not want to remove that variable, because it is used in an ASSERT in that function. Signed-off-by: Sorin Vinturis Acked-by: Alin Gabriel Serdean --- datapath-windows/ovsext/Datapath.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/datapath-windows/ovsext/Datapath.c b/datapath-windows/ovsext/Datapath.c index a4e63aa371a..f6e6e500856 100644 --- a/datapath-windows/ovsext/Datapath.c +++ b/datapath-windows/ovsext/Datapath.c @@ -1257,6 +1257,8 @@ HandleDpTransactionCommon(POVS_USER_PARAMS_CONTEXT usrParamsCtx, }; PNL_ATTR dpAttrs[ARRAY_SIZE(ovsDatapathSetPolicy)]; + UNREFERENCED_PARAMETER(msgOut); + /* input buffer has been validated while validating write dev op. */ ASSERT(msgIn != NULL && usrParamsCtx->inputLength >= sizeof *msgIn);