From bcccd3dfb2d5ebcb3db49061b07fa75378804615 Mon Sep 17 00:00:00 2001 From: Gwenhael Le Moine Date: Fri, 1 Jul 2011 18:00:43 +0200 Subject: [PATCH] unused variable --- star.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/star.c b/star.c index 37b11ea..2663022 100644 --- a/star.c +++ b/star.c @@ -458,7 +458,7 @@ void display_level( struct state *s ) int main( int argc, char* argv[] ) { - int i = 0, key; + int key; struct state *s = malloc( sizeof( struct state ) ); /* ncurses */ @@ -492,7 +492,7 @@ int main( int argc, char* argv[] ) load_level( s, levels, s->level + 1 ); } else { - // Damn it you finished the whole game!! + // TODO:Damn it you finished the whole game!! } }