diff options
author | corvid <devnull@localhost> | 2014-05-23 03:00:29 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2014-05-23 03:00:29 +0000 |
commit | ea0c973b3ee57ee729d582d5401147ee12071016 (patch) | |
tree | b992686d8bec475b25a487754aec96ecce60e09a /src | |
parent | d7ec68a6b852de05172248c1dd13bc6d094df4d3 (diff) |
a little more
Diffstat (limited to 'src')
-rw-r--r-- | src/paths.cc | 2 |
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)); |