From 18ae50ad4eab711ebd5d0f5ddd251a4fcbe88d4c Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Tue, 15 Mar 2016 10:58:29 +0100 Subject: [PATCH] tests/periph_uart: adapted to cb type changtests/periph_uart: adapted to cb type changee --- tests/periph_uart/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/periph_uart/main.c b/tests/periph_uart/main.c index 52fbd19871..56b85c9930 100644 --- a/tests/periph_uart/main.c +++ b/tests/periph_uart/main.c @@ -63,7 +63,7 @@ static int parse_dev(char *arg) return dev; } -static void rx_cb(void *arg, char data) +static void rx_cb(void *arg, uint8_t data) { int dev = (int)arg;