From 7bc6137ef74a0f66345c16e077b121def5d5e84f Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Tue, 29 Oct 2019 17:58:11 +0100 Subject: [PATCH] pipe: fix copy & paste error --- src/villas-pipe.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/villas-pipe.cpp b/src/villas-pipe.cpp index 5b84363d0..6848121d8 100644 --- a/src/villas-pipe.cpp +++ b/src/villas-pipe.cpp @@ -461,7 +461,7 @@ check: if (optarg == endptr) throw RuntimeError("Failed to start node {}: reason={}", node_name(node), ret); PipeReceiveDirection recv_dir(node, &io, enable_recv, limit_recv); - PipeSendDirection send_dir(node, &io, enable_recv, limit_recv); + PipeSendDirection send_dir(node, &io, enable_recv, limit_send); recv_dir.startThread(); send_dir.startThread();