Silence some compile warnings.
[super-star-trek.git] / src / io.c
index 416649f9d6b2f667e39d99e233fe5babb544a53a..fa028f52933078a621d985bbbac65c2fa3cea186 100644 (file)
--- a/src/io.c
+++ b/src/io.c
@@ -209,12 +209,12 @@ void cgetline(char *line, int max)
        wrefresh(curwnd);
     } else {
        if (replayfp && !feof(replayfp))
-           fgets(line, max, replayfp);
+           (void)fgets(line, max, replayfp);
        else
-           fgets(line, max, stdin);
+           (void)fgets(line, max, stdin);
     }
     if (logfp)
-       fputs(line, logfp);
+       (void)fputs(line, logfp);
     line[strlen(line)-1] = '\0';
 }
 
@@ -390,7 +390,7 @@ void warble(void)
 void tracktorpedo(coord w, int l, int i, int n, int iquad)
 /* torpedo-track animation */
 {
-    if (!game.options & OPTION_CURSES) {
+    if (!(game.options & OPTION_CURSES)) {
        if (l == 1) {
            if (n != 1) {
                skip(1);