Chop one level of indentation

eprintf() will exit the program, no need to use the else construct.
This commit is contained in:
sin 2014-05-05 15:07:55 +01:00
parent b257f7a05f
commit 9694305e05
1 changed files with 30 additions and 29 deletions

View File

@ -28,7 +28,8 @@ cp(const char *s1, const char *s2)
if (stat(s1, &st) == 0 && S_ISDIR(st.st_mode)) {
if (!cp_rflag) {
eprintf("%s: is a directory\n", s1);
} else {
}
if(!(dp = opendir(s1)))
eprintf("opendir %s:", s1);
@ -54,10 +55,10 @@ cp(const char *s1, const char *s2)
fnck(ns1, ns2, cp);
}
}
closedir(dp);
free(ns1);
free(ns2);
}
return 0;
}
if(!(f1 = fopen(s1, "r")))