aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/paths.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/paths.cc b/src/paths.cc
index 18712995..bb233de8 100644
--- a/src/paths.cc
+++ b/src/paths.cc
@@ -45,7 +45,7 @@ void Paths::init(void)
path = dStrconcat(dGethomedir(), "/.dillo", NULL);
if (stat(path, &st) == -1) {
if (errno == ENOENT) {
- MSG("paths: Creating directory %s\n", path);
+ MSG("paths: Creating directory '%s/'\n", path);
if (mkdir(path, 0700) < 0) {
MSG("paths: Error creating directory %s: %s\n",
path, dStrerror(errno));