Skip to content

Commit

Permalink
Merge pull request #92 from KNX-IOT/build-test
Browse files Browse the repository at this point in the history
fix warning
  • Loading branch information
WAvdBeek authored Mar 11, 2024
2 parents be11972 + 42412fc commit 91439a0
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 91439a0

Please sign in to comment.