Skip to content

Commit

Permalink
specasm: fix end of file selection
Browse files Browse the repository at this point in the history
The parameter to the function that handles page down in select
mode had a parameter of the wrong type.

Signed-off-by: Mark Ryan <markusdryan@gmail.com>
  • Loading branch information
markdryan committed Sep 24, 2024
1 parent 9656b44 commit ad3ad06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/editor.c
Original file line number Diff line number Diff line change
Expand Up @@ -1146,7 +1146,7 @@ static uint8_t prv_select_key_down(void)
return 1;
}

static uint8_t prv_select_block_down(uint8_t adj)
static uint8_t prv_select_block_down(uint16_t adj)
{
unsigned int last_line;
unsigned int new_line;
Expand Down

0 comments on commit ad3ad06

Please sign in to comment.