From 3f51c74ba1318cc97a82b9fa84e2a97e8c624ffb Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Thu, 16 Nov 2017 18:47:39 -0600 Subject: [PATCH] fix mingw build error --- src/remoteClient/clientContextImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remoteClient/clientContextImpl.cpp b/src/remoteClient/clientContextImpl.cpp index 3d75691..b8a215a 100644 --- a/src/remoteClient/clientContextImpl.cpp +++ b/src/remoteClient/clientContextImpl.cpp @@ -2170,7 +2170,7 @@ public: option = pvOptions->getSubField("pipeline"); if (option) { try { - m_pipeline = option->getAs(); + m_pipeline = option->getAs(); }catch(std::runtime_error& e){ SEND_MESSAGE(m_callback, cb, "Invalid pipeline=", warningMessage); }