summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Millwood <thebenmachine@gmail.com>2012-04-06 21:56:52 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:18:15 +0000
commit7ec5a361670eec377ee00a868131057bc82e6cc7 (patch)
treeaacd3286d188071048e544ee573fbe73ac9ce728
parentfe4829a0fa9647e94011df58621a5982df2cd7e8 (diff)
* Oops, clean up some variables unused after last commit
-rw-r--r--src/game/bg_lib.c2
1 files changed, 0 insertions, 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 )
{