Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
WAvdBeek committed Mar 11, 2024
1 parent be11972 commit 42412fc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion knx_iot_virtual_pb.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,8 @@ bool app_retrieve_bool_variable(char* url)
}
if ( strcmp(url, URL_INFOONOFF_4) == 0) {
return g_InfoOnOff_4; /**< global variable for InfoOnOff_4 */
}
}
return false;
}

// FAULT code
Expand Down
4 changes: 3 additions & 1 deletion knx_iot_virtual_sa.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,9 @@ bool app_retrieve_bool_variable(char* url)
}
if ( strcmp(url, URL_INFOONOFF_4) == 0) {
return g_InfoOnOff_4; /**< global variable for InfoOnOff_4 */
}
}

return false;
}

// FAULT code
Expand Down

0 comments on commit 42412fc

Please sign in to comment.