summaryrefslogtreecommitdiff
path: root/apps/examples/nx/nx_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/nx/nx_main.c')
-rw-r--r--apps/examples/nx/nx_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/examples/nx/nx_main.c b/apps/examples/nx/nx_main.c
index 92328d2a1..7bfd19732 100644
--- a/apps/examples/nx/nx_main.c
+++ b/apps/examples/nx/nx_main.c
@@ -703,7 +703,7 @@ int nx_main(int argc, char *argv[])
pt.x = g_xres / 8;
pt.y = g_yres / 8;
- message("nx_main: Set window #1 postion to (%d,%d)\n", pt.x, pt.y);
+ message("nx_main: Set window #1 position to (%d,%d)\n", pt.x, pt.y);
ret = nxeg_setposition(hwnd1, &pt);
if (ret < 0)
{
@@ -766,7 +766,7 @@ int nx_main(int argc, char *argv[])
pt.x = g_xres - size.w - pt.x;
pt.y = g_yres - size.h - pt.y;
- message("nx_main: Set hwnd2 postion to (%d,%d)\n", pt.x, pt.y);
+ message("nx_main: Set hwnd2 position to (%d,%d)\n", pt.x, pt.y);
ret = nxeg_setposition(hwnd2, &pt);
if (ret < 0)
{