diff options
Diffstat (limited to 'gdb/inflow.c')
-rw-r--r-- | gdb/inflow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/inflow.c b/gdb/inflow.c index 99c25f2..65f48ba 100644 --- a/gdb/inflow.c +++ b/gdb/inflow.c @@ -700,7 +700,7 @@ new_tty (void) if (ioctl (tty, TIOCSCTTY, 0) == -1) /* Mention GDB in warning because it will appear in the inferior's terminal instead of GDB's. */ - warning ("GDB: Failed to set controlling terminal: %s", + warning (_("GDB: Failed to set controlling terminal: %s"), safe_strerror (errno)); #endif @@ -789,7 +789,7 @@ create_tty_session (void) ret = setsid (); if (ret == -1) - warning ("Failed to create new terminal session: setsid: %s", + warning (_("Failed to create new terminal session: setsid: %s"), safe_strerror (errno)); return ret; |