From 8765f49fdc85e804490ebda4b0b6caee32a45af2 Mon Sep 17 00:00:00 2001 From: Aaron Traas Date: Sat, 22 Jul 2017 14:41:23 -0400 Subject: [PATCH] Address Gitlab issue #35 --- misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.31.1