Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/libalpm/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c
index 9ba3e1ee..0c2e3360 100644
--- a/lib/libalpm/util.c
+++ b/lib/libalpm/util.c
@@ -89,7 +89,7 @@ int _alpm_makepath(char *path)
strcat(full, "/");
strcat(full, ptr);
if(stat(full, &buf)) {
- if(mkdir(full, 0755)) {
+ if(mkdir(full, 0755)) {
free(orig);
umask(oldmask);
return(1);