X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=blobdiff_plain;f=misc.c;h=25808a2c4353ff5a76f301603392e21a7f802f3d;hp=e64cad077d8d94c454bdf07db19b6e4fb99cad2b;hb=5d6b3aaf629c2e8eb0eb4956acce0462731f6d70;hpb=e8a627f964a8337caf0c71dd87b1d7533f489f57 diff --git a/misc.c b/misc.c index e64cad0..25808a2 100644 --- a/misc.c +++ b/misc.c @@ -394,9 +394,10 @@ static bool is_valid_int(const char *str) if (*str == '-') ++str; - // Handle empty string or just "-" + // Handle empty string or just "-". Should never reach this + // point, because this is only used with transitive verbs. if (!*str) - return false; + return false; // LCOV_EXCL_LINE // Check for non-digit chars in the rest of the stirng. while (*str) @@ -653,7 +654,7 @@ void set_seed(long seedval) game.zzword[5] = '\0'; } -unsigned long get_next_lcg_value(void) +static unsigned long get_next_lcg_value(void) /* Return the LCG's current value, and then iterate it. */ { unsigned long old_x = game.lcg_x;