diff options
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/include/io_channel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/include/io_channel.h b/os/hal/include/io_channel.h index af90b431e..66c81b683 100644 --- a/os/hal/include/io_channel.h +++ b/os/hal/include/io_channel.h @@ -51,7 +51,7 @@ msg_t (*gett)(void *instance, systime_t time); \
/* Channel write method with timeout specification.*/ \
size_t (*writet)(void *instance, const uint8_t *bp, \
- size_t n, systime_t time); \
+ size_t n, systime_t time); \
/* Channel read method with timeout specification.*/ \
size_t (*readt)(void *instance, uint8_t *bp, size_t n, systime_t time);
|