Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
milyin committed Sep 10, 2024
1 parent fb73939 commit 5b82c3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/z_liveliness.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ int main(int argc, char** argv) {

printf("Opening session...\n");
z_owned_session_t s;
if (z_open(&s, z_move(config)), NULL) {
if (z_open(&s, z_move(config), NULL)) {
printf("Unable to open session!\n");
exit(-1);
}
Expand Down
2 changes: 1 addition & 1 deletion examples/z_query_sub.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ int main(int argc, char** argv) {

printf("Opening session...\n");
z_owned_session_t s;
if (z_open(&s, z_move(config)), NULL) {
if (z_open(&s, z_move(config), NULL)) {
printf("Unable to open session!\n");
exit(-1);
}
Expand Down

0 comments on commit 5b82c3a

Please sign in to comment.