my_popen: fix indentation

Origin commit data
------------------
Commit: 04fd8c277c
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2014-03-01 (Sat, 01 Mar 2014)
This commit is contained in:
Stefan Seyfried
2014-03-01 21:17:56 +01:00
committed by vanhofen
parent 99781688bb
commit 14d60eff3e

View File

@@ -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);
} }