1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2026-01-01 01:41:18 +01:00

sys/newlib/syscalls: Fix unused-parameter warning

This commit is contained in:
Joakim Gebart 2015-07-04 11:16:54 +02:00
parent 32c213d0b0
commit ac83a00ed0

View File

@ -202,6 +202,8 @@ int _open_r(struct _reent *r, const char *name, int mode)
*/
int _read_r(struct _reent *r, int fd, void *buffer, unsigned int count)
{
(void)r;
(void)fd;
#ifndef MODULE_UART0
int res;
mutex_lock(&uart_rx_mutex);