1<--- FIXED ---> 2-------------------------------------------------------------------------------------------- 3ERROR 0: ./src/sys/tests/linter/testDisabled.c:6:53 4'2' of type 'int' 5 4: { 6 5: /* incorrect */ 7> 6: PetscValidHeaderSpecific(r, PETSC_RANDOM_CLASSID, 2); 8 ^ 9 7: 10 8: /* correct by being disabled */ 11 12Argument number doesn't match for 'r'. Expected '1', found '2' [-fmatching-arg-num] 13 14./src/sys/tests/linter/testDisabled.c:3:29 Note: 'r' is traceable to argument #1 'r' in enclosing function here: 15 1: #include <petsc/private/petscimpl.h> 16 2: 17> 3: PetscErrorCode testDisabled(PetscRandom r) 18 ^^^^^^^^^^^^^ 19 4: { 20 5: /* incorrect */ 21-------------------------------------------------------------------------------------------- 22<--- LEFT ---> 23