From 092c832e6cb68baf3db1160cf32197982f5ce860 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 21 Jun 2011 10:43:52 +0200 Subject: [PATCH] mkpath: indent some comments. --- lib/mkpath.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/mkpath.c b/lib/mkpath.c index ed17a625..a0ac66a8 100644 --- a/lib/mkpath.c +++ b/lib/mkpath.c @@ -78,13 +78,13 @@ xbps_mkpath(const char *path, mode_t mode) sverrno = errno; if (stat(ppath, &sb) < 0) { - /* Not there; use mkdir()s error */ + /* Not there; use mkdir()s error */ errno = sverrno; free(ppath); return -1; } if (!S_ISDIR(sb.st_mode)) { - /* Is there, but isn't a directory */ + /* Is there, but isn't a directory */ errno = ENOTDIR; free(ppath); return -1;