Skip to content

Commit

Permalink
fix #3766
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@15798 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Apr 21, 2011
1 parent a1dcd0d commit 90e2ba8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/grass/qgis.g.info.c
Expand Up @@ -151,7 +151,7 @@ int main( int argc, char **argv )
G_set_window( &window );
fd = G_open_cell_old( rast_opt->answer, "" );
// wait for coors from stdin
while ( G_getl2( buff, 100, stdin ) != 0 )
while ( fgets( buff, 100, stdin ) != 0 )
{
if ( sscanf( buff, "%lf%lf", &x, &y ) != 2 )
{
Expand Down

0 comments on commit 90e2ba8

Please sign in to comment.