summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-11-11 14:01:48 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-11-11 14:01:48 +0000
commit4b164e4f0af2b461746f3a3ea3c52e19fe106a22 (patch)
treebc8cdfcef876989721bd0754e69e635c4f36cb21
parentb0ceb59bc49d6fb2cd7f63dabaec5ce62d320433 (diff)
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.
-rw-r--r--doc/ChangeLog6
-rw-r--r--doc/user/concepts.t2
2 files changed, 7 insertions, 1 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 537e1e60f8..cf90eece7d 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,9 @@
+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.
+
2010-11-01 Joel Sherrill <joel.sherrilL@OARcorp.com>
PR 1714/doc
diff --git a/doc/user/concepts.t b/doc/user/concepts.t
index 80d1e2f020..c4b27b1ae8 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;