X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/28a967a12cfb0b16a136223082e07884eecba715..af2971700a5d9fbc9f68c4afca5ba6567e800260:/uip/rcvtty.c diff --git a/uip/rcvtty.c b/uip/rcvtty.c index 8ddc15d1..3bee075e 100644 --- a/uip/rcvtty.c +++ b/uip/rcvtty.c @@ -192,7 +192,7 @@ message_fd (char **vec) advise(NULL, "unable to create temporary file in %s", get_temp_dir()); return NOTOK; } - m_unlink(tfile); /* Use fd, no longer need the file name. */ + (void) m_unlink(tfile); /* Use fd, no longer need the file name. */ if ((child_id = fork()) == NOTOK) { /* fork error */ @@ -256,7 +256,7 @@ header_fd (void) advise(NULL, "unable to create temporary file in %s", get_temp_dir()); return NOTOK; } - m_unlink(tfile); /* Use fd, no longer need the file name. */ + (void) m_unlink(tfile); /* Use fd, no longer need the file name. */ rewind (stdin);