Skip to content

Commit d708473

Browse files
committedJun 8, 2016
Fix indentation test errors
1 parent 4371a66 commit d708473

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎src/core/gps/parse.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,8 +350,8 @@ int nmea_parse_GPRMC( const char *buff, int buff_sz, nmeaGPRMC *pack )
350350

351351
if ( type != 'P' && type != 'N' )
352352
{
353-
nmea_error( "G?RMC invalid type " );
354-
return 0;
353+
nmea_error( "G?RMC invalid type " );
354+
return 0;
355355
}
356356

357357
if ( 0 != _nmea_parse_time( &time_buff[0], ( int )strlen( &time_buff[0] ), &( pack->utc ) ) )

‎src/server/qgsserver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ QPair<QByteArray, QByteArray> QgsServer::handleRequest( const QString& queryStri
471471
// list. This prevent the scope list to grow indefinitely and seriously deteriorate
472472
// performances and memory in the long run
473473
sMapRenderer->rendererContext()->setExpressionContext( QgsExpressionContext() );
474-
474+
475475
sQgsApplication->processEvents();
476476
if ( logLevel < 1 )
477477
{

0 commit comments

Comments
 (0)
Please sign in to comment.