This function doesn't follow our convention of naming functions.
#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;
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);