summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/bootcard.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-08-29 21:38:09 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-08-29 21:38:09 +0000
commit9549ed9b86b0982f1d6b1cfb2c8d27a34bfaac3e (patch)
treea20b07a5465ac7bf943b18c6ee85e4f1d27f2afa /c/src/lib/libbsp/shared/bootcard.c
parent2011-08-29 Joel Sherrill <joel.sherrilL@OARcorp.com> (diff)
downloadrtems-9549ed9b86b0982f1d6b1cfb2c8d27a34bfaac3e.tar.bz2
2011-08-29 Joel Sherrill <joel.sherrilL@OARcorp.com>
* bootcard.c: Correct printk() format.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/shared/bootcard.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/src/lib/libbsp/shared/bootcard.c b/c/src/lib/libbsp/shared/bootcard.c
index fd7bd22fb9..10723ab783 100644
--- a/c/src/lib/libbsp/shared/bootcard.c
+++ b/c/src/lib/libbsp/shared/bootcard.c
@@ -178,9 +178,9 @@ uint32_t boot_card(
if ( work_area_size <= Configuration.work_space_size ) {
printk(
- "bootcard: work space too big for work area: %p > %p\n",
- (void *) Configuration.work_space_size,
- (void *) work_area_size
+ "bootcard: work space too big for work area: 0x%08x > 0x%08x\n",
+ Configuration.work_space_size,
+ work_area_size
);
bsp_cleanup(1);
return 1;