diff options
Diffstat (limited to 'driver-ti.c')
-rw-r--r-- | driver-ti.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/driver-ti.c b/driver-ti.c index e8515e3..cbf4a13 100644 --- a/driver-ti.c +++ b/driver-ti.c @@ -298,7 +298,7 @@ static void start_driver(TermKey *tk, void *info) */ if(tk->fd != -1 && ti->start_string) { // Can't call putp or tputs because they suck and don't give us fd control - write(tk->fd, ti->start_string, strlen(ti->start_string)); + (void)write(tk->fd, ti->start_string, strlen(ti->start_string)); } } @@ -308,7 +308,7 @@ static void stop_driver(TermKey *tk, void *info) if(tk->fd != -1 && ti->stop_string) { // Can't call putp or tputs because they suck and don't give us fd control - write(tk->fd, ti->stop_string, strlen(ti->stop_string)); + (void)write(tk->fd, ti->stop_string, strlen(ti->stop_string)); } } |