Skip to content

Commit

Permalink
Another attempt to fix return value of lf_get_federates_bin_directory()
Browse files Browse the repository at this point in the history
  • Loading branch information
ChadliaJerad committed Dec 30, 2024
1 parent 7d85d0f commit c6e43ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/federated/federate.c
Original file line number Diff line number Diff line change
Expand Up @@ -2696,9 +2696,9 @@ char* lf_get_federates_bin_directory() {
bin_directory_defined = true;
#endif
if (bin_directory_defined) {
return LF_FEDERATES_BIN_DIRECTORY;
return (LF_FEDERATES_BIN_DIRECTORY);
}
return {NULL};
return NULL;
}

const char* lf_get_federation_id() { return federation_metadata.federation_id; }
Expand Down

0 comments on commit c6e43ee

Please sign in to comment.