Address Gitlab issue #35

This commit is contained in:
Aaron Traas 2017-07-22 14:41:23 -04:00
parent ca5374edc3
commit 8765f49fdc

2
misc.c
View file

@ -654,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;