2009-03-09 Antoine Lacroix <antoine.lacroix at sodern.fr>

PR 1391/bsps
	* startup/spurious.c: Format was %d but had leading 0x.
This commit is contained in:
Joel Sherrill
2009-03-09 16:54:00 +00:00
parent 6068f9b028
commit 9f61de9ef6
6 changed files with 18 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2009-03-09 Antoine Lacroix <antoine.lacroix at sodern.fr>
PR 1391/bsps
* startup/spurious.c: Format was %d but had leading 0x.
2008-08-08 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/linkcmds: All SPARC executables should include

View File

@@ -33,7 +33,7 @@ rtems_isr bsp_spurious_handler(
real_trap = SPARC_REAL_TRAP_NUMBER(trap);
printk( "Unexpected trap (0x%2d) at address 0x%08x\n", real_trap, isf->tpc);
printk( "Unexpected trap (%2d) at address 0x%08x\n", real_trap, isf->tpc);
switch (real_trap) {

View File

@@ -1,3 +1,8 @@
2009-03-09 Antoine Lacroix <antoine.lacroix at sodern.fr>
PR 1391/bsps
* startup/spurious.c: Format was %d but had leading 0x.
2008-08-08 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/linkcmds: All SPARC executables should include

View File

@@ -33,7 +33,7 @@ rtems_isr bsp_spurious_handler(
real_trap = SPARC_REAL_TRAP_NUMBER(trap);
printk( "Unexpected trap (0x%2d) at address 0x%08x\n", real_trap, isf->tpc);
printk( "Unexpected trap (%2d) at address 0x%08x\n", real_trap, isf->tpc);
switch (real_trap) {

View File

@@ -1,3 +1,8 @@
2009-03-09 Antoine Lacroix <antoine.lacroix at sodern.fr>
PR 1391/bsps
* startup/spurious.c: Format was %d but had leading 0x.
2008-08-08 Joel Sherrill <joel.sherrill@OARcorp.com>
* startup/linkcmds: All SPARC executables should include

View File

@@ -38,7 +38,7 @@ rtems_isr bsp_spurious_handler(
real_trap = SPARC_REAL_TRAP_NUMBER(trap);
printk( "Unexpected trap (0x%2d) at address 0x%08x\n", real_trap, isf->tpc);
printk( "Unexpected trap (%2d) at address 0x%08x\n", real_trap, isf->tpc);
switch (real_trap) {