g_strerror
This commit is contained in:
parent
5a1ad84c05
commit
671a30187f
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue