summaryrefslogtreecommitdiff
path: root/openbox/session.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2008-02-21 13:24:19 -0500
committerDana Jansens <danakj@orodu.net>2008-02-21 13:24:19 -0500
commit198d98986bdf224ed29361541d19841339953088 (patch)
treee0a588f29ce1f1c3102da4daf05316a15e9a6cea /openbox/session.c
parent3263845459d15da683b7cab92fb856acbdf2800e (diff)
parentc49c2a8e408f7482f2b977d6cf97517684476ed7 (diff)
Merge branch 'backport' into work
Conflicts: openbox/openbox.c openbox/session.c
Diffstat (limited to 'openbox/session.c')
-rw-r--r--openbox/session.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/session.c b/openbox/session.c
index 3822d414..99d66221 100644
--- a/openbox/session.c
+++ b/openbox/session.c
@@ -104,7 +104,7 @@ void session_startup(gint argc, gchar **argv)
obt_paths_unref(p), p = NULL;
if (!obt_paths_mkdir_path(dir, 0700)) {
- g_message(_("Unable to make directory '%s': %s"),
+ g_message(_("Unable to make directory \"%s\": %s"),
dir, g_strerror(errno));
}
@@ -452,7 +452,7 @@ static gboolean session_save_to_file(const ObSMSaveData *savedata)
f = fopen(ob_sm_save_file, "w");
if (!f) {
success = FALSE;
- g_message(_("Unable to save the session to '%s': %s"),
+ g_message(_("Unable to save the session to \"%s\": %s"),
ob_sm_save_file, g_strerror(errno));
} else {
fprintf(f, "<?xml version=\"1.0\"?>\n\n");
@@ -584,7 +584,7 @@ static gboolean session_save_to_file(const ObSMSaveData *savedata)
if (fflush(f)) {
success = FALSE;
- g_message(_("Error while saving the session to '%s': %s"),
+ g_message(_("Error while saving the session to \"%s\": %s"),
ob_sm_save_file, g_strerror(errno));
}
fclose(f);