Skip to content

Commit

Permalink
fix(lint): Fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
GuilaneDen authored Jan 31, 2023
1 parent ec4c176 commit 58dc8ff
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/handle_provide_parameter.c
Original file line number Diff line number Diff line change
Expand Up @@ -263,11 +263,8 @@ void handle_provide_parameter(void *parameters) {
// Skip this step, and don't forget to decrease skipping counter.
context->skip--;
} else {
if ((context->offset) &&
msg->parameterOffset != context->offset + SELECTOR_SIZE) {
PRINTF("offset: %d, parameterOffset: %d\n",
context->offset,
msg->parameterOffset);
if ((context->offset) && msg->parameterOffset != context->offset + SELECTOR_SIZE) {
PRINTF("offset: %d, parameterOffset: %d\n", context->offset, msg->parameterOffset);
return;
}
context->offset = 0;
Expand Down

0 comments on commit 58dc8ff

Please sign in to comment.