summaryrefslogtreecommitdiff
path: root/apps/examples/touchscreen
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-09-29 16:46:24 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-09-29 16:46:24 +0000
commitb426f9cf6704fa666ca94d8e67a873d2df0d5298 (patch)
tree705fec38042a50713b3842a666e77e394c112ad8 /apps/examples/touchscreen
parentcbdb5257cc9ea90aa14eb071d2bfa4f31a32293e (diff)
downloadpx4-nuttx-b426f9cf6704fa666ca94d8e67a873d2df0d5298.tar.gz
px4-nuttx-b426f9cf6704fa666ca94d8e67a873d2df0d5298.tar.bz2
px4-nuttx-b426f9cf6704fa666ca94d8e67a873d2df0d5298.zip
apps/examples/touchscreen build fixes
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3997 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/examples/touchscreen')
-rw-r--r--apps/examples/touchscreen/tc_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/examples/touchscreen/tc_main.c b/apps/examples/touchscreen/tc_main.c
index 920a504fb..291abcb8f 100644
--- a/apps/examples/touchscreen/tc_main.c
+++ b/apps/examples/touchscreen/tc_main.c
@@ -143,9 +143,9 @@ int MAIN_NAME(int argc, char *argv[])
*/
#if defined(CONFIG_EXAMPLES_TOUCHSCREEN_BUILTIN)
- for (; namples > 0; nsamples--)
+ for (; nsamples > 0; nsamples--)
#elif defined(CONFIG_EXAMPLES_TOUCHSCREEN_NSAMPLES)
- for (namples = 0; namples < CONFIG_EXAMPLES_TOUCHSCREEN_NSAMPLES; nsamples++)
+ for (nsamples = 0; nsamples < CONFIG_EXAMPLES_TOUCHSCREEN_NSAMPLES; nsamples++)
#else
for (;;)
#endif