Skip to content

Commit

Permalink
Minor log text tweak.
Browse files Browse the repository at this point in the history
  • Loading branch information
gooding470 committed Nov 12, 2024
1 parent ecf48d3 commit 4abdbbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion as/src/base/exp.c
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ struct op_table_entry_s {
[__code].r_type = __r_type, \
[__code].alloc_ns = __alloc_ns,

#define result_type_to_str(__type) (__type > 0 && __type < TYPE_END ? \
#define result_type_to_str(__type) (__type >= 0 && __type < TYPE_END ? \
result_type_str[__type] : "invalid")

static const uint8_t* EMPTY_STRING = (uint8_t*)"";
Expand Down

0 comments on commit 4abdbbd

Please sign in to comment.