summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/cmds.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2003-09-26 17:42:45 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2003-09-26 17:42:45 +0000
commitd4c40786f6fc37c32fdc8927e7fc76288ba160c4 (patch)
treef257ff4713debcb6a335a4cfb1046b14a174f8f1 /cpukit/libmisc/shell/cmds.c
parent2003-09-26 Till Strauman <strauman@slac.stanford.edu> (diff)
downloadrtems-d4c40786f6fc37c32fdc8927e7fc76288ba160c4.tar.bz2
2003-09-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 495/rtems_misc * capture/capture-cli.c, monitor/mon-command.c, monitor/mon-config.c, monitor/mon-monitor.c, monitor/mon-object.c, monitor/mon-symbols.c, monitor/monitor.h, shell/cmds.c: Move to making libmisc 16/32 bit clean.
Diffstat (limited to '')
-rw-r--r--cpukit/libmisc/shell/cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libmisc/shell/cmds.c b/cpukit/libmisc/shell/cmds.c
index 9057345203..2c462007df 100644
--- a/cpukit/libmisc/shell/cmds.c
+++ b/cpukit/libmisc/shell/cmds.c
@@ -473,7 +473,7 @@ int main_monitor(int argc,char * argv[]) {
rtems_monitor_node = rtems_get_node(rtems_monitor_task_id);
rtems_monitor_default_node = rtems_monitor_node;
if ((command=rtems_monitor_command_lookup(rtems_monitor_commands,argc,argv)))
- command->command_function(argc, argv, command->command_arg, 0);
+ command->command_function(argc, argv, &command->command_arg, 0);
return 0;
}
/*-----------------------------------------------------------*/