summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-27 07:12:05 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-27 07:12:05 +0000
commit79c49e1ae43d819415899a6be3cd7c5ba9f6f047 (patch)
treeffcc9bb5d7911b84a100e174bd997329633c85a8 /testsuites
parent2009-10-27 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-79c49e1ae43d819415899a6be3cd7c5ba9f6f047.tar.bz2
Add missing argument to printf.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/sptests/sp37/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/sptests/sp37/init.c b/testsuites/sptests/sp37/init.c
index a3ddd66c2b..9ca5b3f06e 100644
--- a/testsuites/sptests/sp37/init.c
+++ b/testsuites/sptests/sp37/init.c
@@ -110,7 +110,7 @@ void check_isr_worked(
printf( "isr_in_progress(%s) from ISR -- OK\n", s );
break;
case 2:
- printf( "isr_in_progress(%s) from ISR -- returned bad value\n");
+ printf( "isr_in_progress(%s) from ISR -- returned bad value\n", s);
rtems_test_exit(0);
break;
}