=== modified file 'driver-ti.c' --- driver-ti.c 2012-01-20 16:44:33 +0000 +++ driver-ti.c 2012-01-18 14:03:39 +0000 @@ -298,7 +298,7 @@ */ if(tk->fd != -1 && ti->start_string) { // Can't call putp or tputs because they suck and don't give us fd control - (void)write(tk->fd, ti->start_string, strlen(ti->start_string)); + write(tk->fd, ti->start_string, strlen(ti->start_string)); } } @@ -308,7 +308,7 @@ if(tk->fd != -1 && ti->stop_string) { // Can't call putp or tputs because they suck and don't give us fd control - (void)write(tk->fd, ti->stop_string, strlen(ti->stop_string)); + write(tk->fd, ti->stop_string, strlen(ti->stop_string)); } }