summaryrefslogtreecommitdiffstats
path: root/doc/user/concepts.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-11-11 14:01:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-11-11 14:01:43 +0000
commit15d89e0500cb3a9ddecff8af515494fe6369bfbc (patch)
treef49f3d01635d0b60ec62e550637f0588dd88b660 /doc/user/concepts.t
parent2010-11-01 Joel Sherrill <joel.sherrilL@OARcorp.com> (diff)
downloadrtems-15d89e0500cb3a9ddecff8af515494fe6369bfbc.tar.bz2
2010-11-11 Joel Sherrill <joel.sherrilL@OARcorp.com>
PR 1716/doc * user/concepts.t: print_name example used a variable which did not match the name of the passed in parameter.
Diffstat (limited to 'doc/user/concepts.t')
-rw-r--r--doc/user/concepts.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/user/concepts.t b/doc/user/concepts.t
index 3e03692707..9d9427e95f 100644
--- a/doc/user/concepts.t
+++ b/doc/user/concepts.t
@@ -98,7 +98,7 @@ an object name:
#include <rtems.h>
#include <rtems/bspIo.h>
-void print_name(rtems_id the_object)
+void print_name(rtems_id id)
@{
char buffer[10]; /* name assumed to be 10 characters or less */
char *result;