Skip to content

Commit

Permalink
Trivial warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardalee committed Feb 2, 2024
1 parent 9bbd509 commit a0ad33d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/environment.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ static void environment_init_federated(environment_t* env, int num_is_present_fi
LF_ASSERT(env->_lf_intended_tag_fields, "Out of memory");
env->_lf_intended_tag_fields_size = num_is_present_fields;
} else {
env->_lf_intended_tag_fields_size = NULL;
env->_lf_intended_tag_fields = NULL;
env->_lf_intended_tag_fields_size = 0;
}
#endif
}
Expand Down

0 comments on commit a0ad33d

Please # to comment.