Skip to content

Commit

Permalink
Correcting missing static declaration. Fixes #70.
Browse files Browse the repository at this point in the history
  • Loading branch information
QuantumForge authored and dwalkes committed Nov 9, 2021
1 parent d189772 commit a81106a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tty/tiny_tty.c
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ static int tiny_write(struct tty_struct *tty,
#if (LINUX_VERSION_CODE < KERNEL_VERSION(5, 14, 0))
static int tiny_write_room(struct tty_struct *tty)
#else
unsigned int tiny_write_room(struct tty_struct *tty)
static unsigned int tiny_write_room(struct tty_struct *tty)
#endif
{
struct tiny_serial *tiny = tty->driver_data;
Expand Down

0 comments on commit a81106a

Please sign in to comment.