diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/bg_lib.c | 2 |
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 ) { |