From 6095d4aef3b7b016ee04a52e6b375961f4188d5e Mon Sep 17 00:00:00 2001 From: "nethack.allison" Date: Sat, 26 Jan 2008 17:00:18 +0000 Subject: [PATCH] initoptions warning following its split (trunk only) ..\src\options.c(565) : warning C4101: 'opts' : unreferenced local variable The code in initoptions_init() that uses opts seems to now be isolated to UNIX and VMS. --- src/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options.c b/src/options.c index f77e5503d..f204f864a 100644 --- a/src/options.c +++ b/src/options.c @@ -561,7 +561,7 @@ initoptions(){ void initoptions_init() { -#ifndef MAC +#if defined(UNIX) || defined(VMS) char *opts; #endif int i;