Skip to content

Commit

Permalink
Fix for RZ_STRING_TYPE_WIDE changes (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
thestr4ng3r authored Sep 21, 2021
1 parent 241b4bb commit c7a50a2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/RizinScope.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -461,10 +461,12 @@ Symbol *RizinScope::registerFlag(RzFlagItem *flag) const
{
switch(str->type)
{
case RZ_STRING_TYPE_WIDE:
case RZ_STRING_TYPE_WIDE_LE:
case RZ_STRING_TYPE_WIDE_BE:
tn = "char16_t";
break;
case RZ_STRING_TYPE_WIDE32:
case RZ_STRING_TYPE_WIDE32_LE:
case RZ_STRING_TYPE_WIDE32_BE:
tn = "char32_t";
break;
}
Expand Down

0 comments on commit c7a50a2

Please sign in to comment.