<--- FIXED ---> ./src/sys/tests/linter/testDisabled.c:3:1: error: Function 'testDisabled()' does not appear to be used anywhere outside of testDisabled.c, and can be made static [-fstatic-function-candidate]: 1: #include 2: > 3: PetscErrorCode testDisabled(PetscRandom r) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 4: { 5: /* incorrect */ ./src/sys/tests/linter/testDisabled.c:6:53: error: Argument number doesn't match for 'r'. Expected '1', found '2' [-fmatching-arg-num]: 4: { 5: /* incorrect */ > 6: PetscValidHeaderSpecific(r, PETSC_RANDOM_CLASSID, 2); ^ 7: 8: /* correct by being disabled */ ./src/sys/tests/linter/testDisabled.c:3:29 Note: 'r' is traceable to argument #1 'r' in enclosing function here: 1: #include 2: > 3: PetscErrorCode testDisabled(PetscRandom r) ^^^^^^^^^^^^^ 4: { 5: /* incorrect */ <--- LEFT --->