Selaa lähdekoodia

Remove unused-parameter errors when LOGGER=SWO

Sebastien COUDREAU 4 vuotta sitten
vanhempi
sitoutus
c9d9bfab92
1 muutettua tiedostoa jossa 2 lisäystä ja 0 poistoa
  1. 2 0
      hw/bsp/board.c

+ 2 - 0
hw/bsp/board.c

@@ -126,6 +126,8 @@ TU_ATTR_USED int sys_write (int fhdl, const void *buf, size_t count)
 TU_ATTR_USED int sys_read (int fhdl, char *buf, size_t count)
 {
   (void) fhdl;
+  (void) buf;
+  (void) count;
   return 0;
 }