From 7ec5a361670eec377ee00a868131057bc82e6cc7 Mon Sep 17 00:00:00 2001 From: Ben Millwood Date: Fri, 6 Apr 2012 21:56:52 +0000 Subject: * Oops, clean up some variables unused after last commit --- src/game/bg_lib.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/game/bg_lib.c b/src/game/bg_lib.c index 94af5f18..d2a6eb34 100644 --- a/src/game/bg_lib.c +++ b/src/game/bg_lib.c @@ -1566,7 +1566,6 @@ double strtod( const char *nptr, char **endptr ) if( end != s && tolower( *nptr ) == 'p' ) { int exp; - float res2; // apparently (confusingly) the exponent should be // decimal exp = strtol( &nptr[1], (char **)&end, 10 ); @@ -1612,7 +1611,6 @@ double strtod( const char *nptr, char **endptr ) if( p != end && tolower( *nptr ) == 'e' ) { int exp; - float res10; exp = strtol( &nptr[1], (char **)&end, 10 ); if( &nptr[1] == end ) { -- cgit