summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-04-16 06:19:42 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-04-16 09:11:46 -0600
commit6871b423979b4dc879a410b4609c505abb7879c4 (patch)
tree4b71b010023410cdc91b845160935d94a1ff331d
parent072882bf0898b14ad5bf0b6ac8ffb70cfce84d6c (diff)
downloadpx4-nuttx-6871b423979b4dc879a410b4609c505abb7879c4.tar.gz
px4-nuttx-6871b423979b4dc879a410b4609c505abb7879c4.tar.bz2
px4-nuttx-6871b423979b4dc879a410b4609c505abb7879c4.zip
apps/examples/nxlines: Fix missing right bracket that causes compile error when CONFIG_NX_XYINPUT=y. From Librae.
-rw-r--r--apps/examples/nxlines/nxlines_bkgd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/examples/nxlines/nxlines_bkgd.c b/apps/examples/nxlines/nxlines_bkgd.c
index c40331e46..367ff8c9f 100644
--- a/apps/examples/nxlines/nxlines_bkgd.c
+++ b/apps/examples/nxlines/nxlines_bkgd.c
@@ -166,7 +166,7 @@ static void nxlines_mousein(NXWINDOW hwnd, FAR const struct nxgl_point_s *pos,
{
printf("nxlines_mousein: hwnd=%p pos=(%d,%d) button=%02x\n",
hwnd, pos->x, pos->y, buttons);
-
+}
#endif
/****************************************************************************