summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk/gtk_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtk_gui.c b/gtk/gtk_gui.c
index a08d7d048..686e01775 100644
--- a/gtk/gtk_gui.c
+++ b/gtk/gtk_gui.c
@@ -129,7 +129,7 @@ static void check_homedir(void)
if (access(buf, F_OK) != 0) {
LOG(("You don't have a ~/.netsurf - creating one for you."));
if (mkdir(buf, 0777) == -1) {
- LOG(("Unable to create ~/.netsurf!"));
+ LOG(("Unable to create %s", buf));
die("NetSurf requires ~/.netsurf to exist, but it cannot be created.\n");
}
}