ucode-mod-uline: fix build warnings

Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
Felix Fietkau 2025-04-30 10:32:55 +02:00
parent 0f9af6dcd9
commit b9685dcf3d
2 changed files with 2 additions and 2 deletions

View file

@ -141,7 +141,7 @@ uc_uline_get_line(uc_vm_t *vm, size_t nargs)
{
struct uc_uline_state *us = uc_fn_thisval("uline.state");
uc_value_t *line2 = uc_fn_arg(0);
uc_value_t *state, *val;
uc_value_t *state;
const char *line;
size_t len;

View file

@ -893,7 +893,7 @@ void uline_set_hint(struct uline_state *s, const char *str, size_t len)
pos_add_string(s, &s->cursor_pos, str, len);
}
if (s->cursor_pos.y >= s->rows) {
if (s->cursor_pos.y >= (int16_t)s->rows) {
if (s->cursor_pos.x > 0)
vt100_next_line(s->output);
s->cursor_pos = (struct pos){};