Whamcloud - gitweb
Merge branch 'maint' into next
[tools/e2fsprogs.git] / lib / fpopen.c
index 47346e1..0df25e4 100644 (file)
@@ -46,7 +46,7 @@ FILE *fpopen(const char *cmd, const char *mode)
                errno = EFAULT;
                return NULL;
        }
-       
+
        switch (*mode) {
        case 'r':
                do_stdin = 0;
@@ -91,7 +91,7 @@ FILE *fpopen(const char *cmd, const char *mode)
         */
        if (pipe(fds) < 0)
                return NULL;
-       
+
        /* Fork and execute the correct program. */
        if ((pid = fork()) < 0) {
                perror("fork");