From: Aaron Traas Date: Sat, 22 Jul 2017 18:41:23 +0000 (-0400) Subject: Address Gitlab issue #35 X-Git-Tag: 1.3~10 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=8765f49fdc85e804490ebda4b0b6caee32a45af2 Address Gitlab issue #35 --- diff --git a/misc.c b/misc.c index e6d31bf..25808a2 100644 --- a/misc.c +++ b/misc.c @@ -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;