2007-09-17 Joel Sherrill <joel.sherrill@oarcorp.com>

* libmisc/dumpbuf/dumpbuf.c: Use printk.
This commit is contained in:
Joel Sherrill
2007-09-17 14:28:41 +00:00
parent 52e4f35608
commit a6d5ea6b6b
2 changed files with 6 additions and 1 deletions

View File

@@ -17,6 +17,7 @@
#include <string.h>
#include <ctype.h>
#include <rtems/dumpbuf.h>
#include <rtems/bspIo.h>
/*
* Put the body below rtems_print_buffer so it won't get inlined.
@@ -75,5 +76,5 @@ static inline void Dump_Line(
strcat( line_buffer, "|\n" );
fprintf(stdout, line_buffer );
printk( line_buffer );
}