Skip to content

Commit

Permalink
unused
Browse files Browse the repository at this point in the history
  • Loading branch information
aremmell committed Jan 7, 2024
1 parent cec847c commit b96c8bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/bal/helpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ static inline
bool _bal_strsame(const char* lhs, const char* rhs, size_t len)
{
# if defined(__WIN__)
return 0 == StrStrIA(lhs, rhs, len);
BAL_UNUSED(len);
return 0 == StrStrIA(lhs, rhs);
# else
return 0 == strncasecmp(lhs, rhs, len);
# endif
Expand Down

0 comments on commit b96c8bf

Please sign in to comment.