summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-11 19:34:27 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-02-11 19:34:27 +0000
commit89e2082c243cbf52415ae88cdf080a81d2368228 (patch)
treeaeefe74e3544c0c9c70aeec1155906aacb17abad /cpukit
parent2009-02-11 Matt Rippa <mrippa@gemini.edu> (diff)
downloadrtems-89e2082c243cbf52415ae88cdf080a81d2368228.tar.bz2
2009-02-11 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1374/misc * libmisc/stackchk/check.c: Fix printk formatting string.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/libmisc/stackchk/check.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index 875d1d83a2..9d1816c18c 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,8 @@
+2009-02-11 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ PR 1374/misc
+ * libmisc/stackchk/check.c: Fix printk formatting string.
+
2009-02-05 Ralf Corsépius <ralf.corsepius@rtems.org>
* ftpd/ftpd.c: Change SIX_MONTHS to time_t.
diff --git a/cpukit/libmisc/stackchk/check.c b/cpukit/libmisc/stackchk/check.c
index c31bd5b71b..3b52e9d52a 100644
--- a/cpukit/libmisc/stackchk/check.c
+++ b/cpukit/libmisc/stackchk/check.c
@@ -238,7 +238,7 @@ void Stack_check_report_blown_task(
if ( !pattern_ok ) {
printk(
- " Damaged pattern begins at 0x%08lx and is %zd bytes long\n",
+ " Damaged pattern begins at 0x%08lx and is %d bytes long\n",
(unsigned long) Stack_check_Get_pattern_area(stack),
PATTERN_SIZE_BYTES);
}