From d317e46bbc8dfa0e926fac507feacad4c647f24d Mon Sep 17 00:00:00 2001 From: Dirk Engling Date: Mon, 24 Feb 2014 16:43:19 +0100 Subject: Silence warning about unused variable --- src/export/convert_coords.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/export/convert_coords.c') diff --git a/src/export/convert_coords.c b/src/export/convert_coords.c index 05db96e..abbbc22 100644 --- a/src/export/convert_coords.c +++ b/src/export/convert_coords.c @@ -5,7 +5,7 @@ int main( ) { double x, y; char buf[64]; - int in; + while( fgets( buf, sizeof(buf), stdin ) ) { if( sscanf( buf, "%lf %lf", &x, &y ) == 2 ) { -- cgit v1.2.3