You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by bb...@apache.org on 2020/10/28 18:38:00 UTC

[geode-native] branch develop updated: GEODE-8157: Make SNITest.cpp compile (#681)

This is an automated email from the ASF dual-hosted git repository.

bbender pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new 4bcb3db  GEODE-8157: Make SNITest.cpp compile (#681)
4bcb3db is described below

commit 4bcb3db1e476dd0a73e9bffac6ea65ae7d55105a
Author: M. Oleske <mo...@users.noreply.github.com>
AuthorDate: Wed Oct 28 11:36:55 2020 -0700

    GEODE-8157: Make SNITest.cpp compile (#681)
    
    Bad variable name
    
    Authored-by: M. Oleske <mi...@oleske.engineer>
---
 cppcache/acceptance-test/SNITest.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cppcache/acceptance-test/SNITest.cpp b/cppcache/acceptance-test/SNITest.cpp
index 219310f..5656f03 100644
--- a/cppcache/acceptance-test/SNITest.cpp
+++ b/cppcache/acceptance-test/SNITest.cpp
@@ -81,7 +81,7 @@ class SNITest : public ::testing::Test {
     std::unique_ptr<FILE, decltype(&_pclose)> pipe(_popen(cstrCommand, "r"),
                                                    _pclose);
 #else
-    std::unique_ptr<FILE, decltype(&pclose)> pipe(popen(cStrCommand, "r"),
+    std::unique_ptr<FILE, decltype(&pclose)> pipe(popen(cstrCommand, "r"),
                                                   pclose);
 #endif
     std::array<char, 128> charBuff;