Silence some compile warnings.
authorEric S. Raymond <esr@thyrsus.com>
Tue, 14 Sep 2010 21:54:31 +0000 (21:54 +0000)
committerEric S. Raymond <esr@thyrsus.com>
Tue, 14 Sep 2010 21:54:31 +0000 (21:54 +0000)
src/io.c
src/sst.c
src/sst.h

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);
index 8739ab8e52cc9db852fd4b47aae8e95d2cb51319..c9bf9f4402ff41dbd8ecd436e3c03b85bd97950a 100644 (file)
--- a/src/sst.c
+++ b/src/sst.c
@@ -184,7 +184,7 @@ bool iqhere, iqengry;
 int iscore, iskill;    // Common PLAQ
 double aaitem;
 double perdate;
-char citem[10];
+char citem[12];
 int seed;              // the random-number seed
 bool idebug;           // debug mode
 FILE *logfp, *replayfp;
index c8515efc5030cce48aaa6d966e2f1617ca29480c..dce01e0ee02064ae4556e23d7ca6c2551e3c32bd 100644 (file)
--- a/src/sst.h
+++ b/src/sst.h
@@ -306,7 +306,7 @@ extern char *systnames[NINHAB];
 extern int iscore, iskill; // Common PLAQ
 extern double perdate;
 extern double aaitem;
-extern char citem[10];
+extern char citem[12];
 extern int seed;
 extern bool idebug;
 extern FILE *logfp, *replayfp;