summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/monitor/mon-dname.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libmisc/monitor/mon-dname.c')
-rw-r--r--cpukit/libmisc/monitor/mon-dname.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/libmisc/monitor/mon-dname.c b/cpukit/libmisc/monitor/mon-dname.c
index 5a110ecfc7..4f9cc1aef2 100644
--- a/cpukit/libmisc/monitor/mon-dname.c
+++ b/cpukit/libmisc/monitor/mon-dname.c
@@ -86,7 +86,7 @@ rtems_monitor_dname_dump_header(
boolean verbose
)
{
- printf("\
+ fprintf(stdout,"\
Major:Minor Name\n");
/*23456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789
0 1 2 3 4 5 6 7 */
@@ -103,14 +103,14 @@ rtems_monitor_dname_dump(
length += rtems_monitor_pad(6, length);
length += rtems_monitor_dump_hex(monitor_dname->major);
- length += printf(":");
+ length += fprintf(stdout,":");
length += rtems_monitor_dump_hex(monitor_dname->minor);
length += rtems_monitor_pad(16, length);
- length += printf("%.*s",
+ length += fprintf(stdout,"%.*s",
(int) sizeof(monitor_dname->name_string),
(char *) monitor_dname->name_string);
- length += printf("\n");
+ length += fprintf(stdout,"\n");
length = 0;
}