Skip to content

Commit

Permalink
Fix deref
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabien-B committed Jan 25, 2023
1 parent ccadff7 commit 982301f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sw/airborne/arch/chibios/usb_ser_hw.c
Expand Up @@ -720,7 +720,7 @@ int VCOM_putchar(int c) {
if(!isUsbConnected()) {
return -1;
}
streamPut((SerialUSBDriver*)(usb_serial->reg_addr), c);
streamPut((SerialUSBDriver*)(usb_serial.reg_addr), c);
return c;

}
Expand Down

0 comments on commit 982301f

Please sign in to comment.