summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spsize/size.c
diff options
context:
space:
mode:
authorHailinGuo <hazirguo@gmail.com>2014-01-09 09:50:18 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-01-09 09:50:18 -0600
commit05b3db65f933cd4f58e62e62d26c264d693a12a1 (patch)
tree36fc88ca64b06c5ebac0c79a3ff29c2163dc98f6 /testsuites/sptests/spsize/size.c
parentlibtests: Add contents to rbheap and stackchk documentation files (diff)
downloadrtems-05b3db65f933cd4f58e62e62d26c264d693a12a1.tar.bz2
spsize/size.c: Fix typo.
From pull request at https://github.com/hazirguo/rtems/commit/fc07a4c501ffebe406464eb9b8dd2097adfd5e60
Diffstat (limited to 'testsuites/sptests/spsize/size.c')
-rw-r--r--testsuites/sptests/spsize/size.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/testsuites/sptests/spsize/size.c b/testsuites/sptests/spsize/size.c
index 8e837d1987..f204c05781 100644
--- a/testsuites/sptests/spsize/size.c
+++ b/testsuites/sptests/spsize/size.c
@@ -1,8 +1,12 @@
-/*
+/**
+ * @file
+ *
* This program is run to determine the data space and work space
* requirements of the current version of RTEMS.
- *
- * COPYRIGHT (c) 1989-2009.
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2014.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -565,7 +569,7 @@ total_size += size_ports;
printf( "What is maximum_periods? " );
maximum_periods = getint();
-size_periods = PER_PORT * maximum_periods;
+size_periods = PER_PERIOD * maximum_periods;
total_size += size_periods;
printf( "What is maximum_extensions? " );