Skip to content

Commit

Permalink
Merge pull request #93 from Techcable/fix/rawterm-codepoint-panic-arg…
Browse files Browse the repository at this point in the history
…type

Fix panic arg in `raw_term.c:extract_codepoint`
  • Loading branch information
bakpakin committed Nov 26, 2022
2 parents 87c4744 + b4c41cc commit dbd6877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rawterm.c
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ static uint32_t extract_codepoint(const uint8_t **pstr, const uint8_t *end) {
*pstr = str;
return codepoint;
exit:
janet_panics("invalid codepoint");
janet_panic("invalid codepoint");
}

/* Measure the size of a single character in a monospaced terminal */
Expand Down

0 comments on commit dbd6877

Please sign in to comment.