Skip to content

Commit c452c3d

Browse files
committedJan 14, 2016
Fix some warnings and test failures on nightlies
1 parent f5373ac commit c452c3d

File tree

5 files changed

+2
-2
lines changed

5 files changed

+2
-2
lines changed
 

‎python/plugins/processing/algs/qgis/Merge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def processAlgorithm(self, progress):
8484
total = 100.0 / float(totalFeatureCount)
8585
writer = self.getOutputFromName(self.OUTPUT).getVectorWriter(
8686
fields.toList(), layers[0].dataProvider().geometryType(),
87-
layers[0].crs())
87+
layers[0].crs())
8888

8989
featureCount = 0
9090
for layer in layers:

‎src/app/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ void qgisCrash( int signal )
307307
if ( gdbpid == 0 )
308308
{
309309
// attach, backtrace and continue
310-
execl( "/usr/bin/gdb", "gdb", "-q", "-batch", "-n", pidstr, "-ex", "thread", "-ex", "bt full", exename, nullptr );
310+
execl( "/usr/bin/gdb", "gdb", "-q", "-batch", "-n", pidstr, "-ex", "thread", "-ex", "bt full", exename, NULL );
311311
perror( "cannot exec gdb" );
312312
exit( 1 );
313313
}
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.