From 3f871cbbae8fc67b704f267fadbb932046afd5ca Mon Sep 17 00:00:00 2001 From: patacongo Date: Tue, 27 Mar 2012 22:33:15 +0000 Subject: Updaes for NX Console git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4531 42af7a65-404d-4744-a932-0658087f49c3 --- apps/examples/nxconsole/nxcon_main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/examples/nxconsole/nxcon_main.c') diff --git a/apps/examples/nxconsole/nxcon_main.c b/apps/examples/nxconsole/nxcon_main.c index cc83aac16..96f656704 100644 --- a/apps/examples/nxconsole/nxcon_main.c +++ b/apps/examples/nxconsole/nxcon_main.c @@ -356,7 +356,7 @@ int MAIN_NAME(int argc, char **argv) /* Create a window */ message(MAIN_NAME_STRING ": Create window\n"); - g_nxcon_vars.hwnd = nxtk_openwindow(&g_nxcon_vars.hnx, &g_nxconcb, NULL); + g_nxcon_vars.hwnd = nxtk_openwindow(g_nxcon_vars.hnx, &g_nxconcb, NULL); if (!g_nxcon_vars.hwnd) { message(MAIN_NAME_STRING ": nxtk_openwindow failed: %d\n", errno); @@ -432,10 +432,10 @@ int MAIN_NAME(int argc, char **argv) /* Open the driver */ - fd = open(CONFIG_EXAMPLES_NXCON_DEVNAME, O_RDONLY); + fd = open(CONFIG_EXAMPLES_NXCON_DEVNAME, O_WRONLY); if (fd < 0) { - message(MAIN_NAME_STRING ": open %d read-only failed: %d\n", + message(MAIN_NAME_STRING ": open %s read-only failed: %d\n", CONFIG_EXAMPLES_NXCON_DEVNAME, errno); goto errout_with_driver; } -- cgit v1.2.3