my_popen: fix indentation

Origin commit data
------------------
Branch: ni/coolstream
Commit: 76b0c36a28
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2014-02-23 (Sun, 23 Feb 2014)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2014-02-23 17:24:19 +01:00
parent 7ab7d2020f
commit ed5fac7d36

View File

@@ -207,8 +207,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);
} }