From 822059e4e69547f8e97a1cd219912f55826b0414 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Thu, 27 Jul 2017 18:00:16 +0300 Subject: Rename process_start() and process_run() overloads --- tests/process-run/driver.cxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'tests/process-run') diff --git a/tests/process-run/driver.cxx b/tests/process-run/driver.cxx index ff9dd25..695fdb9 100644 --- a/tests/process-run/driver.cxx +++ b/tests/process-run/driver.cxx @@ -65,14 +65,14 @@ main (int argc, const char* argv[]) assert (run (0, 1, 2, p)); assert (run (0, 1, 2, p, "-c")); - process_run ([] (const char* c[], size_t n) - { - process::print (cout, c, n); - cout << endl; - }, - 0, 1, 2, - p, - "-c"); + process_run_callback ([] (const char* c[], size_t n) + { + process::print (cout, c, n); + cout << endl; + }, + 0, 1, 2, + p, + "-c"); // Stream conversion and redirection. // -- cgit v1.1