From 733080ba0c4340ce25854054cfc5a9d81d8cd3c0 Mon Sep 17 00:00:00 2001 From: Peter Meerwald Date: Sat, 6 Jul 2013 23:15:01 +0200 Subject: [PATCH] uart: fix typo 'eaten' Signed-off-by: Peter Meerwald --- libnfc/buses/uart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnfc/buses/uart.c b/libnfc/buses/uart.c index 69af379..2806553 100644 --- a/libnfc/buses/uart.c +++ b/libnfc/buses/uart.c @@ -144,7 +144,7 @@ uart_flush_input(serial_port sp) } // There is something available, read the data (void)read(UART_DATA(sp)->fd, rx, available_bytes_count); - log_put(LOG_GROUP, LOG_CATEGORY, NFC_LOG_PRIORITY_DEBUG, "%d bytes have eatten.", available_bytes_count); + log_put(LOG_GROUP, LOG_CATEGORY, NFC_LOG_PRIORITY_DEBUG, "%d bytes have eaten.", available_bytes_count); free(rx); }