From 4604a1dd209385797ff0640195478dc2577facc3 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 15 Oct 2015 16:07:18 +0200 Subject: [PATCH] cheevos.c - cleanup --- cheevos.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cheevos.c b/cheevos.c index 7bf01d642f..d189ae54a7 100644 --- a/cheevos.c +++ b/cheevos.c @@ -298,8 +298,8 @@ static unsigned prefix_to_comp_size( char prefix ) static unsigned read_hits( const char** memaddr ) { - const char* str = *memaddr; char* end; + const char* str = *memaddr; unsigned num_hits = 0; if ( *str == '(' || *str == '.' ) @@ -314,8 +314,8 @@ static unsigned read_hits( const char** memaddr ) static unsigned parse_operator( const char** memaddr ) { - const char* str = *memaddr; unsigned char op; + const char* str = *memaddr; if ( *str == '=' && str[ 1 ] == '=' ) {