g_strerror
authorDana Jansens <danakj@orodu.net>
Sat, 25 Oct 2003 19:40:54 +0000 (19:40 +0000)
committerDana Jansens <danakj@orodu.net>
Sat, 25 Oct 2003 19:40:54 +0000 (19:40 +0000)
openbox/session.c

index 57a463e..2fd83e9 100644 (file)
@@ -335,7 +335,7 @@ static gboolean session_save()
     if (!f) {
         success = FALSE;
         g_warning("unable to save the session to %s: %s",
-                  save_file, strerror(errno));
+                  save_file, g_strerror(errno));
     } else {
         guint stack_pos = 0;
 
@@ -425,7 +425,7 @@ static gboolean session_save()
         if (fflush(f)) {
             success = FALSE;
             g_warning("error while saving the session to %s: %s",
-                      save_file, strerror(errno));
+                      save_file, g_strerror(errno));
         }
         fclose(f);
     }