summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2015-04-03 15:08:20 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2015-04-03 15:08:20 -0500
commitfd50acd54ff1d2028f671f5d1eb44b24ecd8b23d (patch)
treec1fe7d0e3aec035b773d5b77872de3d957c83e45
parentods68302-testsuite.tcfg: Add fileio (diff)
downloadrtems-fd50acd54ff1d2028f671f5d1eb44b24ecd8b23d.tar.bz2
shell/main_rtrace.c: Fix warning
-rw-r--r--cpukit/libmisc/shell/main_rtrace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libmisc/shell/main_rtrace.c b/cpukit/libmisc/shell/main_rtrace.c
index b4bb1337ae..f1b8a59821 100644
--- a/cpukit/libmisc/shell/main_rtrace.c
+++ b/cpukit/libmisc/shell/main_rtrace.c
@@ -132,7 +132,7 @@ rtems_trace_buffering_shell_funcs (int argc, char *argv[])
printf(" %4zu: %c%c %-*s\n", t,
rtems_trace_enable_set(t) ? 'E' : '-',
rtems_trace_trigger_set(t) ? 'T' : '-',
- max, rtems_trace_names (t));
+ (int) max, rtems_trace_names (t));
}
return 0;