Skip to content

Commit

Permalink
sa rev
Browse files Browse the repository at this point in the history
  • Loading branch information
camilo committed Oct 22, 2024
1 parent 6efa9f0 commit 7fd1a5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/include/fsm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -638,8 +638,8 @@ namespace qOS {
{
int ret = 1;
/*cstat -MISRAC++2008-5-0-21 -CERT-EXP46-C */
ret &= install( table, nTable );
ret &= install( def, nDef );
ret &= install( table, nTable ); // skipcq: CXX-W2065
ret &= install( def, nDef ); // skipcq: CXX-W2065
/*cstat +MISRAC++2008-5-0-21 +CERT-EXP46-C */
return ( 0 != ret );
}
Expand Down
2 changes: 0 additions & 2 deletions src/input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -466,8 +466,6 @@ bool input::analogChannel::setParameter( const input::event e, const analogValue
delta = p;
break;
case input::event::STEP_UP:
step = p;
break;
case input::event::STEP_DOWN:
step = p;
break;
Expand Down

0 comments on commit 7fd1a5b

Please sign in to comment.