Skip to content

Commit

Permalink
Fix defined name: It is UTF16_STRINGS not UTF16_STRING.
Browse files Browse the repository at this point in the history
  • Loading branch information
zoulasc committed Nov 29, 2024
1 parent fe41cf5 commit b538a4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sh.file.c
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ tsearch(Char *word, COMMAND command, size_t max_word_length)
static int
compare(const void *p, const void *q)
{
#if defined (WIDE_STRINGS) && !defined (UTF16_STRING)
#if defined (WIDE_STRINGS) && !defined (UTF16_STRINGS)
errno = 0;

return (wcscoll(*(Char *const *) p, *(Char *const *) q));
Expand Down

0 comments on commit b538a4b

Please sign in to comment.