Skip to content

Commit

Permalink
Fix buffer size for Windows when ep size is 64
Browse files Browse the repository at this point in the history
  • Loading branch information
tmk committed Apr 1, 2022
1 parent dc2681d commit e586cf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hid_listen.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ static void delay_ms(unsigned int msec);

int main(void)
{
char buf[64], *in, *out;
char buf[65], *in, *out;
rawhid_t *hid;
int num, count;

Expand Down

0 comments on commit e586cf1

Please sign in to comment.