Skip to content

Commit

Permalink
preparation
Browse files Browse the repository at this point in the history
  • Loading branch information
thradams committed Mar 22, 2024
1 parent 81440f1 commit ef78ba8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -21804,7 +21804,7 @@ void set_object_state(
{
char buffer[100] = { 0 };
object_get_name(p_source_type, p_object_source, buffer, sizeof buffer);
compiler_diagnostic_message(W_OWNERSHIP_FLOW_MISSING_DTOR,
compiler_diagnostic_message(W_OWNERSHIP_FLOW_UNINITIALIZED,
ctx,
error_position,
"source object '%s' is uninitialized", buffer);
Expand Down
2 changes: 1 addition & 1 deletion src/object.c
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ void set_object_state(
{
char buffer[100] = { 0 };
object_get_name(p_source_type, p_object_source, buffer, sizeof buffer);
compiler_diagnostic_message(W_OWNERSHIP_FLOW_MISSING_DTOR,
compiler_diagnostic_message(W_OWNERSHIP_FLOW_UNINITIALIZED,
ctx,
error_position,
"source object '%s' is uninitialized", buffer);
Expand Down

0 comments on commit ef78ba8

Please sign in to comment.