Skip to content

Commit

Permalink
Correct type_kind_to_str output for TK_CHAR8 case
Browse files Browse the repository at this point in the history
Signed-off-by: Lucia Echevarria <luciaechevarria@eprosima.com>
  • Loading branch information
LuciaEchevarria99 committed Sep 9, 2024
1 parent 4ad4e66 commit 706c84b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ddspipe_core/src/cpp/types/dynamic_types/schema_msg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ std::string type_kind_to_str(
return "float64";

case fastdds::dds::xtypes::TK_CHAR8:
return "int8";
return "char";

case fastdds::dds::xtypes::TK_STRING8:
return "string";
Expand Down

0 comments on commit 706c84b

Please sign in to comment.