You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by vi...@apache.org on 2018/05/24 03:16:32 UTC

[mynewt-core] branch console_fix updated: console_fix: fix builds (#1131)

This is an automated email from the ASF dual-hosted git repository.

vipulrahane pushed a commit to branch console_fix
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git


The following commit(s) were added to refs/heads/console_fix by this push:
     new 09d9d02  console_fix: fix builds (#1131)
09d9d02 is described below

commit 09d9d02e93d6830ee58c52290c81374a5cc571f9
Author: Vipul Rahane <vr...@gmail.com>
AuthorDate: Wed May 23 20:16:28 2018 -0700

    console_fix: fix builds (#1131)
---
 sys/console/full/src/uart_console.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/console/full/src/uart_console.c b/sys/console/full/src/uart_console.c
index 05c6c72..49881ff 100644
--- a/sys/console/full/src/uart_console.c
+++ b/sys/console/full/src/uart_console.c
@@ -89,7 +89,7 @@ console_queue_char(struct uart_dev *uart_dev, uint8_t ch)
 {
     int sr;
 
-    if ((uart_dev->ud_dev->od_flags & OS_DEV_F_STATUS_OPEN) == 0) {
+    if ((uart_dev->ud_dev.od_flags & OS_DEV_F_STATUS_OPEN) == 0) {
         return;
     }
 

-- 
To stop receiving notification emails like this one, please contact
vipulrahane@apache.org.