From f41ad9caa143821146cd62a48eaf2584bef728d5 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 26 Nov 2015 13:41:57 -0600 Subject: [PATCH] netdev.h: Fix a typo in a type name --- include/nuttx/net/netdev.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/nuttx/net/netdev.h b/include/nuttx/net/netdev.h index 73cc0798e8..b28d0371dc 100644 --- a/include/nuttx/net/netdev.h +++ b/include/nuttx/net/netdev.h @@ -157,7 +157,7 @@ struct netdev_statistics_s /* Tx Status */ uint32_t tx_packets; /* Number of Tx packets queued */ - unit32_t tx_done; /* Number of packets completed */ + uint32_t tx_done; /* Number of packets completed */ uint32_t tx_errors; /* Number of receive errors (incl timeouts) */ uint32_t tx_timeouts; /* Number of Tx timeout errors */