From b468e8ba0b2d00d7c76fff757c053df6c2acf5d6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tom=C3=A1=C5=A1=20Ry=C5=A1av=C3=BD?= Date: Thu, 26 May 2016 17:02:03 +0200 Subject: [PATCH] tests: Rename virtTestCaptureProgramExecChild to virTestCaptureProgramExecChild. This function doesn't follow our convention of naming functions. --- tests/testutils.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/testutils.c b/tests/testutils.c index 315ad8da85..afdd2929a4 100644 --- a/tests/testutils.c +++ b/tests/testutils.c @@ -351,8 +351,8 @@ virTestLoadFile(const char *file, char **buf) #ifndef WIN32 static -void virtTestCaptureProgramExecChild(const char *const argv[], - int pipefd) +void virTestCaptureProgramExecChild(const char *const argv[], + int pipefd) { size_t i; int open_max; @@ -408,7 +408,7 @@ virtTestCaptureProgramOutput(const char *const argv[], char **buf, int maxlen) switch (pid) { case 0: VIR_FORCE_CLOSE(pipefd[0]); - virtTestCaptureProgramExecChild(argv, pipefd[1]); + virTestCaptureProgramExecChild(argv, pipefd[1]); VIR_FORCE_CLOSE(pipefd[1]); _exit(EXIT_FAILURE); -- 2.39.5