mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 08:51:10 +02:00
my_popen: fix indentation
This commit is contained in:
committed by
svenhoefer
parent
64a61f5aa2
commit
04fd8c277c
@@ -205,8 +205,8 @@ FILE* my_popen( pid_t& pid, const char *cmdstring, const char *type)
|
|||||||
close(pfd[1]);
|
close(pfd[1]);
|
||||||
if ((fp = fdopen(pfd[0], type)) == NULL)
|
if ((fp = fdopen(pfd[0], type)) == NULL)
|
||||||
return(NULL);
|
return(NULL);
|
||||||
} else {
|
} else {
|
||||||
close(pfd[0]);
|
close(pfd[0]);
|
||||||
if ((fp = fdopen(pfd[1], type)) == NULL)
|
if ((fp = fdopen(pfd[1], type)) == NULL)
|
||||||
return(NULL);
|
return(NULL);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user