g_strerror

This commit is contained in:
Dana Jansens 2003-10-25 19:40:54 +00:00
parent 5a1ad84c05
commit 671a30187f

View file

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