Skip to content

Commit

Permalink
Update eval.c
Browse files Browse the repository at this point in the history
  • Loading branch information
augustss authored Jan 14, 2024
1 parent 90894aa commit d4ef66d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/eval.c
Original file line number Diff line number Diff line change
Expand Up @@ -1852,7 +1852,7 @@ NODEPTR
mkString(const char *astr, size_t len)
{
NODEPTR n, nc;
const unsigned char *str = (u_char*)astr; /* no sign bits, please */
const unsigned char *str = (unsigned char*)astr; /* no sign bits, please */

n = mkNil();
for(size_t i = len; i > 0; i--) {
Expand Down

0 comments on commit d4ef66d

Please sign in to comment.