summaryrefslogtreecommitdiff
path: root/apps/examples
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-06-08 02:16:26 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-06-08 02:16:26 +0000
commite076a9524d7ea86d3508dcb33146cddc1a2ff553 (patch)
treecd6253ef2cbaf45bc336b72c5018431578534481 /apps/examples
parent2b2d2098a82f38861d4eb5147afa58be5697a2c0 (diff)
downloadnuttx-e076a9524d7ea86d3508dcb33146cddc1a2ff553.tar.gz
nuttx-e076a9524d7ea86d3508dcb33146cddc1a2ff553.tar.bz2
nuttx-e076a9524d7ea86d3508dcb33146cddc1a2ff553.zip
Fix typo in example code
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4816 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/examples')
-rw-r--r--apps/examples/nximage/nximage_bitmap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/examples/nximage/nximage_bitmap.c b/apps/examples/nximage/nximage_bitmap.c
index 6b0d13718..a7c304d31 100644
--- a/apps/examples/nximage/nximage_bitmap.c
+++ b/apps/examples/nximage/nximage_bitmap.c
@@ -1,8 +1,8 @@
/********************************************************************************************
* examples/nximage/nximage_bitmap.c
*
- * Copyright (C) 2011 Gregory Nutt. All rights reserved.
- * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ * Copyright (C) 2011-2012 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -3683,7 +3683,7 @@ void nximage_blitrow(FAR nxgl_mxpixel_t *run, FAR const void **state)
#if defined(CONFIG_EXAMPLES_NXIMAGE_XSCALEp5) || defined(CONFIG_EXAMPLES_NXIMAGE_XSCALE1p5)
nhalfpixels += nrun & 1;
#ifdef CONFIG_EXAMPLES_NXIMAGE_XSCALEp5
- nrum >>= 1;
+ nrun >>= 1;
#else
nrun = nrun + (nrun >> 1);
#endif